aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.common3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 1af1db7..8298bed 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -1,5 +1,6 @@
# next line has to be edited manually
PD_DIR ?= $(ROOT_DIR)/../../pd/src
+PD_INCLUDE = $(PD_DIR)
OS_NAME = $(shell uname -s)
@@ -85,7 +86,7 @@ OUT_DIR = $(if $($1_SUBDIR),$(BIN_DIR)/$($1_SUBDIR),$(BIN_DIR))
BASE_DIR = $(shell basename `pwd`)
BASE_NAME = $(shell basename `pwd` | awk -F - '{print $$1}')
-INCLUDES = -I. -I$(PD_DIR) -I$(SHARED_DIR) -I"$(PD_INCLUDE)"
+INCLUDES = -I. -I$(PD_DIR) -I$(PD_INCLUDE) -I$(SHARED_DIR)
ifdef CAML_TYPES
include $(ROOT_DIR)/Makefile.caml