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 | 8e5ab86825f40de99b9ebde1a8726a4ae988fc57 (patch) | |
tree | 8231165a9ca210b5137976c46fbee928742ae4f0 | |
parent | 288d2214f1ddbe65740127d07dc5d2130337d1c7 (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 ad2452f..fb58caf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,8 +31,8 @@ xvidtune_SOURCES = \ # Man page appmandir = $(APP_MAN_DIR) -appman_SOURCES = xvidtune.man -appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) +appman_PRE = xvidtune.man +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) SED = sed @@ -68,7 +68,7 @@ Xvidtune: Xvidtune.cpp $(RAWCPP) $(srcdir)/Xvidtune.cpp | \ sed -e 's/^\#.*$$//g' -e 's|__VENDOR__|$(VENDOR_NAME)|' > $@ -EXTRA_DIST = Xvidtune.cpp $(appman_SOURCES) +EXTRA_DIST = Xvidtune.cpp $(appman_PRE) CLEANFILES = Xvidtune $(appman_DATA) |