diff options
author | Benjamin Otte <otte@redhat.com> | 2013-05-09 18:57:34 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2013-05-09 19:09:50 +0200 |
commit | ecaf09c9185e2a364ac61865c39c506c6f0e6232 (patch) | |
tree | 9e295403fe637c0c14493c667b35c9bf344941ee /perf | |
parent | a8da29b8dbc6241584780e9017ff30cbe50e26d9 (diff) | |
download | gtk+-ecaf09c9185e2a364ac61865c39c506c6f0e6232.tar.gz |
build: remove --disable-rebuilds
It's unused and was only useful when perl wasn't installed. But perl is
a dependency of glib these days, so it's useless.
Diffstat (limited to 'perf')
-rw-r--r-- | perf/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am index e76f605bc3..9be3bb138a 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -51,13 +51,13 @@ MAINTAINERCLEANFILES = $(BUILT_SOURCES) $(stamp_files) typebuiltins.h: stamp-typebuiltins.h @true -stamp-typebuiltins.h: @REBUILD@ $(headers_with_enums) typebuiltins.h.template +stamp-typebuiltins.h: $(headers_with_enums) typebuiltins.h.template ( cd $(srcdir) && $(GLIB_MKENUMS) --template typebuiltins.h.template \ $(headers_with_enums) ) >> xgen-gtbh \ && (cmp -s xgen-gtbh typebuiltins.h || cp xgen-gtbh typebuiltins.h ) \ && rm -f xgen-gtbh \ && echo timestamp > $(@F) -typebuiltins.c: @REBUILD@ $(headers_with_enums) typebuiltins.c.template +typebuiltins.c: $(headers_with_enums) typebuiltins.c.template ( cd $(srcdir) && $(GLIB_MKENUMS) --template typebuiltins.c.template \ $(headers_with_enums) ) > xgen-gtbc \ && cp xgen-gtbc typebuiltins.c \ |