diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:23 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:23 +0000 |
commit | 0b90073689ab1745bb2277485687521f564a1939 (patch) | |
tree | 758eacfce3fafdc9f28f1857ef981d5bd4c46d2f | |
parent | 0813f5229d48b9a0ed3dec5438db338dae71dfd9 (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 02433f1..15ec8af 100644 --- a/Makefile.am +++ b/Makefile.am @@ -67,7 +67,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) |