diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-09-26 15:09:03 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-09-26 15:09:03 -0400 |
commit | 1c151fef87c61e2d329d84d3db59559bffa767fe (patch) | |
tree | d1ee251d280897fc74e3290d569bbb1b3185ce33 /pango | |
parent | a2b560ab7d7cba57a04a3e9d30ab9ecd50c473e3 (diff) | |
download | pango-1c151fef87c61e2d329d84d3db59559bffa767fe.tar.gz |
Unbreak build system
After 88692e4e, every make invocation was rebuilding everything. Fix.
Diffstat (limited to 'pango')
-rw-r--r-- | pango/Makefile.am | 6 |
1 files 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 |