diff options
-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 a5c20dc..cd26ed8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,13 +30,13 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xau.pc libmandir = $(LIB_MAN_DIR) -libman_SOURCES = Xau.man +libman_PRE = Xau.man BUILT_SOURCES = shadows.DONE CLEANFILES = $(libman_DATA) -libman_DATA = $(libman_SOURCES:man=@LIB_MAN_SUFFIX@) \ +libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \ $(Xau_shadows:=.@LIB_MAN_SUFFIX@) -EXTRA_DIST = xau.pc.in Autest.c $(libman_SOURCES) +EXTRA_DIST = xau.pc.in Autest.c $(libman_PRE) Xau_shadows = \ XauFileName \ |