diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:21 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:21 +0000 |
commit | 43fb7218e8723f6f3321ec406745971ca5fd0d00 (patch) | |
tree | 95af738f7e186e43b8ca88a74e45c7339438ee65 /man | |
parent | a85acab665c375d14ae15ef90f6baf8b47c7032b (diff) |
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index f17388c..a4c17cd 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -29,7 +29,7 @@ appmandir = $(mandir)/man$(APP_MAN_SUFFIX) appman_SOURCES = twm.man -appman_DATA = $(appman_SOURCES:man=$(APP_MAN_SUFFIX)) +appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) EXTRA_DIST = $(appman_SOURCES) |