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 | 2b26c5434f06ee68349b41f332ff46b21bafd557 (patch) | |
tree | b80c2c1491fb6bf845ff3016a0e5dda1e9f3cebc | |
parent | 5a833cc25b6913ae41bd2c0263cff2bc9b63f28d (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 3fdc614..241c4db 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,7 +31,7 @@ xclock_SOURCES = \ ClockP.h \ xclock.c -appman_SOURCES = \ +appman_PRE = \ xclock.man # App default files (*.ad) @@ -59,9 +59,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 |