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 | 4364ba6829303bd09f4713b50fe44a2fa89872a5 (patch) | |
tree | 9c81140b69ec5c2d6a0ebd87f862f8dfa0a107c1 | |
parent | fbfc3a3410f51b1e0706ffd115a41e9ae1e36160 (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 cc7d764..e8f2bd9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,7 +10,7 @@ appman_SOURCES = xhost.man 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) |