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 | be42526a6087c63f618bfeb13c7f3b46068528fe (patch) | |
tree | f50c14ad02349b47adceb5723144a41f2a15430e | |
parent | bc6cbdd5925ffc52abbf0da1834405b8fbe49ee1 (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 a48b702..b311775 100644 --- a/Makefile.am +++ b/Makefile.am @@ -109,7 +109,7 @@ CLEANFILES = config 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) |