diff options
-rw-r--r-- | packages/darwin_app/Makefile | 4 | ||||
-rwxr-xr-x | packages/linux_make/Makefile | 4 | ||||
-rwxr-xr-x | packages/win32_inno/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index c62624a1..6a95e7d9 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -9,8 +9,8 @@ PD_APP_NAME = $(PACKAGE_NAME) PD_APP_CONTENTS = $(BUILD_BASE)/$(PD_APP_NAME).app/Contents DESTDIR = $(PD_APP_CONTENTS)/Resources -cvs_root_dir = $(CWD)/../.. -BUILDLAYOUT_DIR = $(CWD)/.. +cvs_root_dir = $(shell cd $(CWD)/../.. && pwd) +BUILDLAYOUT_DIR = $(shell cd $(CWD)/.. && pwd) include $(BUILDLAYOUT_DIR)/Makefile.buildlayout diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index de09a8b0..4840ee27 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -5,8 +5,8 @@ CWD := $(shell pwd) DESTDIR = $(CWD)/build/ -cvs_root_dir = $(CWD)/../.. -BUILDLAYOUT_DIR = $(CWD)/.. +cvs_root_dir = $(shell cd $(CWD)/../.. && pwd) +BUILDLAYOUT_DIR = $(shell cd $(CWD)/.. && pwd) # for command-line UNIX versions, you need to install Pd into the same diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 83131e7b..5fa1dcb3 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -6,8 +6,8 @@ all: install CWD := $(shell pwd) DESTDIR = $(CWD)/build -cvs_root_dir = $(CWD)/../.. -BUILDLAYOUT_DIR = $(CWD)/.. +cvs_root_dir = $(shell cd $(CWD)/../.. && pwd) +BUILDLAYOUT_DIR = $(shell cd $(CWD)/.. && pwd) include $(BUILDLAYOUT_DIR)/Makefile.buildlayout |