Set UPDATE_DEPDFILE=NO for showconfig

Exporting UPDATE_DEPDFILE=NO from makeman didn't work,
back to setting it in local.meta.sys.env.mk
This commit is contained in:
Simon J. Gerraty 2023-04-23 13:43:45 -07:00
parent 42162fb2fe
commit baf2dc6476
2 changed files with 5 additions and 2 deletions

View File

@ -88,3 +88,8 @@ META_MODE+= missing-meta=yes
.if empty(META_MODE:Mnofilemon)
META_MODE+= missing-filemon=yes
.endif
.if make(showconfig)
# this does not need/want filemon
UPDATE_DEPENDFILE= NO
.endif

View File

@ -20,8 +20,6 @@
set -o errexit
export LC_ALL=C
# just be clear that we are not making anything
export UPDATE_DEPENDFILE=no
t=$(mktemp -d -t makeman)
trap 'test -d $t && rm -rf $t' exit