diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:24 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:24 +0000 |
commit | f427001cd1f3efdafa06c381c38fd5a4449b76f2 (patch) | |
tree | 9d6acc348eb7a082f71c3d6a3165187a6779fd37 | |
parent | 5c4880cca850794b05539c21a3a6dfe1531b801b (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 064fabb..6c8184b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,7 +39,7 @@ xmore_SOURCES += \ print.h endif -appman_SOURCES = \ +appman_PRE = \ xmore.man # App default files (*.ad) @@ -65,9 +65,9 @@ EXTRA_DIST += xmore.sgml 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 |