diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:18 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:18 +0000 |
commit | 3079b683034b5ca45182df15e420041377aff190 (patch) | |
tree | 1a3f596b975db38bf689328b1e9c47832adc7b76 | |
parent | 3cf12f8bb84f6c7f48d21372026ed90cfbb448a4 (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 0ee7293..c448d6a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,7 @@ appman_SOURCES = bdftopcf.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) |