diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:21 +0000 |
---|---|---|
committer | Sung-Jin Park <sj76.park@samsung.com> | 2013-09-02 23:37:46 -0400 |
commit | f6f50654e7ff608455c24d6ea4691163e5295d3c (patch) | |
tree | d61f471f2d99b6a40f1ee428a131bc2d7fb52731 | |
parent | 376391391b8bd1dc636811706aae18ae83dfe31d (diff) | |
download | xeyes-f6f50654e7ff608455c24d6ea4691163e5295d3c.tar.gz xeyes-f6f50654e7ff608455c24d6ea4691163e5295d3c.tar.bz2 xeyes-f6f50654e7ff608455c24d6ea4691163e5295d3c.zip |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
Change-Id: I9e5f5b1aff4b0a4a8c68c5d4184ca8bf92340cd4
-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 dd92a57..90b4ada 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,16 +32,16 @@ xeyes_SOURCES = \ transform.h \ xeyes.c -appman_SOURCES = \ +appman_PRE = \ xeyes.man EXTRA_DIST = eyes.bit eyesmask.bit appmandir = $(APP_MAN_DIR) -appman_DATA = $(appman_SOURCES:man=@APP_MAN_SUFFIX@) +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST += $(appman_SOURCES) +EXTRA_DIST += $(appman_PRE) CLEANFILES = $(appman_DATA) SED = sed |