diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:17 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-06 22:48:17 +0000 |
commit | de145e0469b263c12499fb6827e8ca7290b9e174 (patch) | |
tree | 8532dc9e524d89bea65e547690386889c5338f23 /Makefile.am | |
parent | c5c9c2a0db7a375478dc58e9de96d2dc02dfd085 (diff) |
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 7e03298..d48685f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,7 +33,7 @@ oclock_SOURCES = \ transform.c \ transform.h -appman_SOURCES = \ +appman_PRE = \ oclock.man # App default files (*.ad) @@ -58,9 +58,9 @@ CLEANFILES = $(APPDEFAULTFILES) 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 |