From d93e198700cd2c2a8c3e5eb83bcdd33b0b298422 Mon Sep 17 00:00:00 2001 From: Jacob ZAK Date: Mon, 28 Sep 2015 17:39:57 +0000 Subject: [PATCH] fix(builder): use realpath make builtin Use realpath make builtin instead of the realpath command (doesn't exist on debian wheezy). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f7756d9..06e0374 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ else endif # absolute install path -BEURK_INFECT_ABSPATH ?= $(shell realpath -m $(BEURK_INFECT_DIR)/$(BEURK_LIBRARY_NAME)) +BEURK_INFECT_ABSPATH ?= $(realpath $(BEURK_INFECT_DIR)/$(BEURK_LIBRARY_NAME)) # compiler options INCLUDES := -Iincludes