diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:19 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:19 +0000 |
commit | 8e9f6aa0f81fa57e8b08684a1110e945f6f0dacd (patch) | |
tree | 4f2a9249e4798c8186548f63e754119197cb46fe /Makefile.am | |
parent | e09f755a36b9848a7c76013d324713b1ee5cf0e3 (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPY
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 09dbd67..921816a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,7 +52,7 @@ x11perf_SOURCES = \ x11perf.c \ x11perf.h -appman_SOURCES = \ +appman_PRE = \ x11perfcomp.man \ x11perf.man \ Xmark.man @@ -68,9 +68,9 @@ EXTRA_DIST = x11pcomp.cpp appmandir = $(APP_MAN_DIR) -appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST += $(appman_SOURCES) +EXTRA_DIST += $(appman_PRE) CLEANFILES += $(appman_DATA) SED = sed |