diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:23 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-17 23:56:23 +0000 |
commit | dc0b907e02d6c1ab917e30c4b262b5c9f780ef12 (patch) | |
tree | f1d27ddd0cf747e2c67e126b95091d40e54a64e5 | |
parent | 0c48fdb05b2538c94c809e25c8690a7094900e07 (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 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. |