summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-10-17 23:56:23 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-10-17 23:56:23 +0000
commitdc0b907e02d6c1ab917e30c4b262b5c9f780ef12 (patch)
treef1d27ddd0cf747e2c67e126b95091d40e54a64e5
parent0c48fdb05b2538c94c809e25c8690a7094900e07 (diff)
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index b16dd56..132a2c8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ appman_SOURCES = \
startx.man \
xinit.man
-appman_DATA = $(appman_SOURCES:man=$(APP_MAN_SUFFIX))
+appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@)
# Translate XCOMM into pound sign with sed, rather than passing -DXCOMM=XCOMM
# to cpp, because that trick does not work on all ANSI C preprocessors.