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 | 18957fc0a71ac7eef82a7338bc68e28cf994e1a1 (patch) | |
tree | 4d66393d2598acea11dd74b6af37a278b42d546d | |
parent | 168ab66feb8eb387afc81cbb2f8f699bbc96a999 (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 b44c356..812c145 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,7 +27,7 @@ viewres_LDADD = $(VIEWRES_LIBS) viewres_SOURCES = \ viewres.c -appman_SOURCES = \ +appman_PRE = \ viewres.man # App default files (*.ad) @@ -52,9 +52,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 |