aboutsummaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-04-27 12:32:24 -0500
committerRob Landley <rob@landley.net>2020-04-27 12:32:24 -0500
commit7e7ab8fd29292a123dc81eefe29e14adc731b293 (patch)
tree98e93b331396219ebf8adcd3911b1aa2a1dfe01a /kconfig
parent10acc65a056585794e255734a83b6232bcc0a4a8 (diff)
downloadtoybox-7e7ab8fd29292a123dc81eefe29e14adc731b293.tar.gz
Allow KCONFIG_ALLCONFIG to delta against defconfig.
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile
index d57c9df8..2e8e5dcd 100644
--- a/kconfig/Makefile
+++ b/kconfig/Makefile
@@ -29,8 +29,9 @@ allyesconfig: $(obj)/conf $(KCONFIG_TOP)
allnoconfig: $(obj)/conf $(KCONFIG_TOP)
$< -n $(KCONFIG_TOP) > /dev/null
+KCONFIG_ALLCONFIG ?= /dev/null
defconfig: $(obj)/conf $(KCONFIG_TOP)
- $< -D /dev/null $(KCONFIG_TOP) > /dev/null
+ $< -D $(KCONFIG_ALLCONFIG) $(KCONFIG_TOP) > /dev/null
macos_defconfig: $(obj)/conf $(KCONFIG_TOP)
KCONFIG_ALLCONFIG=$(obj)/macos_miniconfig $< -n $(KCONFIG_TOP) > /dev/null