diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:25 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:25 +0000 |
commit | c7d2af3102968f14f5d4a5db2c968beca4c701c9 (patch) | |
tree | 90456e954bac5e0669034fba5aca13528e65b30c | |
parent | 98e21bcf2e08115841d53c67a3c1fe66eac04105 (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 25423f2..50c3ba6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -96,7 +96,7 @@ CLEANFILES = $(APPDEFAULTFILES) 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) |