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 | 1fde86615a00efff3145097740f0460871802637 (patch) | |
tree | 8c552491f2a64649b00eeb4c5d35145fb9fb77dd | |
parent | ce2485521d44673191554f10f33f1f5e9a7fe698 (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 240d77b..023435d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,7 +29,7 @@ beforelight_SOURCES = \ b4light.c \ config.h -appman_SOURCES = \ +appman_PRE = \ beforelight.man # App default files (*.ad) @@ -54,9 +54,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 |