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 7e718c7..ff32891 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,15 +37,15 @@ fonttosfnt_SOURCES += env.c fonttosfnt_CFLAGS += -DNEED_SETENV endif -appman_SOURCES = \ +appman_PRE = \ fonttosfnt.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 |