diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:26 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:26 +0000 |
commit | dbb5b18240e906a9744e4133b3b76b0aa6ecb615 (patch) | |
tree | 275075a0aead14c37f01b1234b0cebae40476c7a | |
parent | 997a79f1dd547c98a62e59865d41b52618023d54 (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPY
-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 6f5ab82..a9ae40d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,15 +27,15 @@ xvinfo_LDADD = $(XVINFO_LIBS) xvinfo_SOURCES = \ xvinfo.c -appman_SOURCES = \ +appman_PRE = \ xvinfo.man 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 |