diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:21 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:21 +0000 |
commit | a489b54c63515aa2be297ef340501b1b7ef09423 (patch) | |
tree | 7bce3fcd028e7ec2dc10429a0efaf10c93ba793a | |
parent | 4ac6e7bffbd29ae179fbc053a8317db4fa2f3f75 (diff) |
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 45ab7e2..90ea1bf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -68,7 +68,7 @@ EXTRA_DIST = x11pcomp.cpp appmandir = $(mandir)/man$(APP_MAN_SUFFIX) -appman_DATA = $(appman_SOURCES:man=$(APP_MAN_SUFFIX)) +appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) EXTRA_DIST += $(appman_SOURCES) CLEANFILES += $(appman_DATA) |