diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:25 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:25 +0000 |
commit | 299da02da003a5804e58cf5e613aa1aa3321b3cb (patch) | |
tree | def3c97c7ef523a50a484909e7adc5fe4386a831 | |
parent | 04bfd06dfa055d0143e2a98da1b06f84f02dca6d (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 c8b08a0..03e70c6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,15 +29,15 @@ xprop_SOURCES = \ dsimple.h \ xprop.c -appman_SOURCES = \ +appman_PRE = \ xprop.man 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 |