From 1c151fef87c61e2d329d84d3db59559bffa767fe Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 26 Sep 2012 15:09:03 -0400 Subject: Unbreak build system After 88692e4e, every make invocation was rebuilding everything. Fix. --- pango/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pango/Makefile.am b/pango/Makefile.am index 5017d96e..ab092c92 100644 --- a/pango/Makefile.am +++ b/pango/Makefile.am @@ -132,14 +132,16 @@ s-enum-types-h: $(pango_headers) Makefile.am pango-enum-types.h.template $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --template pango-enum-types.h.template \ $(pango_headers) ) > pango-enum-types.h.tmp \ - && mv pango-enum-types.h.tmp pango-enum-types.h + && mv pango-enum-types.h.tmp pango-enum-types.h \ + && echo timestamp > $@ pango-enum-types.c: s-enum-types-c s-enum-types-c: $(pango_headers) Makefile.am pango-enum-types.c.template $(AM_V_GEN) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --template pango-enum-types.c.template \ $(pango_headers) ) > pango-enum-types.c.tmp \ - && mv pango-enum-types.c.tmp pango-enum-types.c + && mv pango-enum-types.c.tmp pango-enum-types.c \ + && echo timestamp > $@ pango-features.h: $(AM_V_GEN) cd $(top_builddir) && ./config.status pango/pango-features.h -- cgit v1.2.1