GNOME Bugzilla – Bug 734960
Only remove meta/meta-version.h as part of make distclean
Last modified: 2014-08-18 08:28:34 UTC
This causes build errors with jhbuild buildone -cfa mutter otherwise.
Created attachment 283673 [details] [review] Don't list meta/meta-version.h in mutter_built_sources It's already listed in libmutterinclude_built_headers.
Created attachment 283674 [details] [review] Don't remove meta/meta-version.h during make clean meta/meta-version.h is generated by configure, so it should be removed with make distclean, not make clean. This is the heuristic described in https://www.gnu.org/software/automake/manual/html_node/Clean.html Cleaning it in make clean means that configure; make clean; make won't work properly as meta/meta-version.h will be removed and not regenerated.
Review of attachment 283674 [details] [review]: OK.
Review of attachment 283673 [details] [review]: Sure.
Attachment 283673 [details] pushed as ec3dc4a - Don't list meta/meta-version.h in mutter_built_sources Attachment 283674 [details] pushed as 04ddfe0 - Don't remove meta/meta-version.h during make clean