diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:22 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:22 +0000 |
commit | e76fafcfd736eb3a0ee87ad5ba9b51a5e8e8649c (patch) | |
tree | 9fb7fb636a16a35695983de869bb5062fc0d455c | |
parent | 68cf52e97a8f3051eb515847f6274998af4e8037 (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 42ca013..8a6e230 100644 --- a/Makefile.am +++ b/Makefile.am @@ -80,7 +80,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) |