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 | 21b3cc4e8052a3cbd558aed4decc6a961a4b93cb (patch) | |
tree | f60b7cabef39b0f5e6143ad9d1fca394b60c3144 /Makefile.am | |
parent | 20a095fc71f31fb6014d224b1dc8520939341b35 (diff) |
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ba90ec1..26c88c8 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) |