diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:41 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:41 +0000 |
commit | e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a (patch) | |
tree | b8fd4fada75faaad29c8f09c6a593c0463e59dac | |
parent | b5c495854d5270e64e6d588388ffa906bfcaac22 (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPY
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | man/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> + + * man/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/man/Makefile.am b/man/Makefile.am index 5f0114f..dbf5178 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -3,7 +3,7 @@ libmandir = $(LIB_MAN_DIR) -libman_SOURCES = \ +libman_PRE = \ AllPlanes.man \ BlackPixelOfScreen.man \ DisplayOfCCC.man \ @@ -190,13 +190,13 @@ libman_SOURCES = \ # What we actually install if MANPAGES -libman_DATA = $(libman_SOURCES:man=@LIB_MAN_SUFFIX@) \ +libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \ $(all_shadows:=.@LIB_MAN_SUFFIX@) BUILT_SOURCES = shadows.DONE endif -EXTRA_DIST = $(libman_SOURCES) +EXTRA_DIST = $(libman_PRE) CLEANFILES = $(libman_DATA) |