diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:17 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:17 +0000 |
commit | de145e0469b263c12499fb6827e8ca7290b9e174 (patch) | |
tree | 8532dc9e524d89bea65e547690386889c5338f23 | |
parent | c5c9c2a0db7a375478dc58e9de96d2dc02dfd085 (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 7e03298..d48685f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,7 +33,7 @@ oclock_SOURCES = \ transform.c \ transform.h -appman_SOURCES = \ +appman_PRE = \ oclock.man # App default files (*.ad) @@ -58,9 +58,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 |