diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:24 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:24 +0000 |
commit | 4b6c61e82c0665be51157f7ea611024b2a8c344a (patch) | |
tree | 1bf82d934c82722d5c2c44cff8c8acb786af035d | |
parent | 95f73789ffc2f1e1f85624a00215a539f84f309e (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 61f4ad7..2009591 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,7 +33,7 @@ appman_SOURCES = \ 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) |