diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:18 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:18 +0000 |
commit | 102695adf6f26533e86d45b9fe8e61a83f300969 (patch) | |
tree | 7d7d8ad38707afaa247041427f0188619a8cb113 | |
parent | d64c29bc96df9e5e31126ea6caf3560a657c36c0 (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 eafcbd8..b27ac49 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,8 +73,8 @@ rstartd: server.cpp # man pages appmandir = $(APP_MAN_DIR) -appman_SOURCES = rstartd.man rstart.man -appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) +appman_PRE = rstartd.man rstart.man +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) # Strings to replace in man pages XORGRELSTRING = @PACKAGE_STRING@ @@ -88,7 +88,7 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man $(RAWCPP) $(RAWCPPFLAGS) $(MANDEFS) $(EXTRAMANDEFS) < $< | $(CPP_SED_MAGIC) > $@ -EXTRA_DIST = client.cpp server.cpp config.cpp $(appman_SOURCES) +EXTRA_DIST = client.cpp server.cpp config.cpp $(appman_PRE) CLEANFILES = rstart rstartd config $(appman_DATA) |