diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:16 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:16 +0000 |
commit | 07cfe6f6de483aefcc18836fd3f03bdc5d6cd823 (patch) | |
tree | df71fb0599bbc005cc9593b91457bd1424257c71 | |
parent | f0e1e5f67882635777fa9a25496265a661c40a02 (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 690d78d..cc3cb1d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ atobm_SOURCES = \ # mans -appman_SOURCES = \ +appman_PRE = \ bitmap.man @@ -102,12 +102,12 @@ dist_bitmap_DATA = \ appmandir = $(APP_MAN_DIR) -appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) \ +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) \ $(man_shadows:=.@APP_MAN_SUFFIX@) BUILT_SOURCES = shadows.DONE -EXTRA_DIST += $(appman_SOURCES) +EXTRA_DIST += $(appman_PRE) CLEANFILES += $(appman_DATA) $(BUILT_SOURCES) SED = sed |