diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/Makefile b/packages/Makefile index 3ebf3ec8..f464069d 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -91,13 +91,15 @@ externals: #------------------------------------------------------------------------------ # pd +PD_CONFIGURE_FLAGS = --prefix=$(prefix) + ifeq ($(OS_NAME),darwin) - PD_CONFIGURE_FLAGS = --enable-jack + PD_CONFIGURE_FLAGS += --enable-jack else ifeq ($(OS_NAME),linux) - PD_CONFIGURE_FLAGS = --enable-jack --enable-alsa + PD_CONFIGURE_FLAGS += --enable-jack --enable-alsa else - PD_CONFIGURE_FLAGS = + PD_CONFIGURE_FLAGS += endif endif |