diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:15 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:15 +0000 |
commit | 8e3cd1b0e5c443c3c93565343c6721a3345c085e (patch) | |
tree | ec84cb8fac836f5212fa8f67895bf0fc27c72273 | |
parent | a61fd8c9f26b1defde1bf45ba5b938c197951d3f (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPY
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org> + + * Makefile.am: + Change *man_SOURCES ==> *man_PRE to fix autotools warnings. + 2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/Makefile.am b/Makefile.am index 9e3f2d4..575c277 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,13 +26,13 @@ bdftopcf_LDADD = @BDFTOPCF_LIBS@ bdftopcf_SOURCES = bdftopcf.c -appman_SOURCES = bdftopcf.man +appman_PRE = bdftopcf.man 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 |