diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:22 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:22 +0000 |
commit | 15308d1a18f86d783b2480b31ce168de3f9ca109 (patch) | |
tree | 0d717f6a42850e2c3084d1cb91de0f70e831b3b5 | |
parent | 9d4606cf318bf4432068db87ee55572b2695d7ed (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
-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 355ffa4..ffe8f28 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,7 @@ xfontsel_SOURCES = \ ULabelP.h \ xfontsel.c -appman_SOURCES = \ +appman_PRE = \ xfontsel.man # App default files (*.ad) @@ -55,9 +55,9 @@ CLEANFILES = $(APPDEFAULTFILES) 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 |