diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-06 07:57:56 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-06 07:57:56 +0000 |
commit | 93fb1fe1b8d0497c11b3ba0d8665175e913c7794 (patch) | |
tree | 6789e7fde90df7f390eb2aa3400ef9b6c205af9a /examples | |
parent | 8cbbd02b44341c9c4907caaa86fcc9711d53ae48 (diff) | |
download | LibXtract-93fb1fe1b8d0497c11b3ba0d8665175e913c7794.tar.gz LibXtract-93fb1fe1b8d0497c11b3ba0d8665175e913c7794.tar.bz2 LibXtract-93fb1fe1b8d0497c11b3ba0d8665175e913c7794.zip |
Fixed automake variable substitution issues
Diffstat (limited to 'examples')
-rw-r--r-- | examples/puredata/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/puredata/Makefile.am b/examples/puredata/Makefile.am index 3666682..f3eb08e 100644 --- a/examples/puredata/Makefile.am +++ b/examples/puredata/Makefile.am @@ -1,5 +1,5 @@ -SUFFIXES = .pd_linux +SUFFIXES = .@PD_SUFFIX@ PDDIR = $(prefix)/lib/pd pddir = $(PDDIR) @@ -9,7 +9,7 @@ pdinstallrefdir = $(pddir)/doc/5.reference pdinstallexpdir = $(pddir)/doc/xtract # Automake won't accept something ending in ".pd_linux" as a library -pdinstall_PROGRAMS = xtract~.pd_linux +pdinstall_PROGRAMS = xtract~.@PD_SUFFIX@ if BUILD_PD_EXAMPLE xtract_pd_linux_SOURCES = xtract~.c |