Suggested to rename MK_META_MODE to MK_DIRDEPS_BUILD
so that MK_META_FILES can be renamed to MK_META_MODE
This change if made should be done before stable/11
Details
- Reviewers
bdrewery - Commits
- rS290816: Rename META_MODE option to DIRDEPS_BUILD
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
You'll also need to rename these:
-rw-r--r-- 1 root bryan 104 Aug 4 14:10 tools/build/options/WITH_META_FILES
-rw-r--r-- 1 root bryan 941 Sep 18 15:56 tools/build/options/WITH_META_MODE
And handle these:
tools/build/options/makeman:.Va WITH_META_MODE
tools/build/options/WITH_DIRDEPS_CACHE:.Va WITH_META_MODE .
tools/build/options/WITH_STAGING:.Va WITH_META_MODE .
tools/build/options/WITH_SYSROOT:.Va WITH_META_MODE .
This or WITH_META_BUILD would be nice. I really don't care about the specific name as long as we can differentiate between "meta mode" and "new build". Thanks for doing this!
svn mv should really be enough. You can even edit the new file after a svn mv. One gotcha is that you need to run 'svn up' in the directory before renaming them to avoid a potential hook problem (this is far more common in Ports though and unlikely to hit you here).
share/mk/local.sys.mk | ||
---|---|---|
30 ↗ | (On Diff #10171) | we need ${.CURDIR} before ${COOKIE*} to be safe. Some usage has 'cd somedir; ${MAKE}' before the last line, without a sub-shell. Something I encountered in include/Makefile so far. |