makeman: Ensure MK_AUTO_OBJ is disabled in some lookups.

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Bryan Drewery 2017-10-31 02:18:06 +00:00
parent 32e7d9d0d9
commit 177d707c0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325196

View File

@ -44,7 +44,7 @@ no_targets()
show_options()
{
ALL_TARGETS=$(echo $(${make} targets | tail -n +2))
ALL_TARGETS=$(echo $(${make} targets MK_AUTO_OBJ=no | tail -n +2))
rm -f $t/settings
for target in ${ALL_TARGETS} ; do
prev_opt=
@ -245,7 +245,7 @@ EOF
show with SRC_ENV_CONF=/dev/null | sort | sed 's/$/=/' > $t/src.conf
show settings SRC_ENV_CONF=$t/src.conf | sort > $t/config_WITH_ALL
show without SRC_ENV_CONF=/dev/null | sort > $t/config_WITHOUT_ALL
env_only_options="$(${make} -V __ENV_ONLY_OPTIONS)"
env_only_options="$(${make} MK_AUTO_OBJ=no -V __ENV_ONLY_OPTIONS)"
show_options |
while read opt targets ; do