diff options
| author | Rob Landley <rob@landley.net> | 2020-04-27 12:32:24 -0500 | 
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2020-04-27 12:32:24 -0500 | 
| commit | 7e7ab8fd29292a123dc81eefe29e14adc731b293 (patch) | |
| tree | 98e93b331396219ebf8adcd3911b1aa2a1dfe01a | |
| parent | 10acc65a056585794e255734a83b6232bcc0a4a8 (diff) | |
| download | toybox-7e7ab8fd29292a123dc81eefe29e14adc731b293.tar.gz | |
Allow KCONFIG_ALLCONFIG to delta against defconfig.
| -rw-r--r-- | kconfig/Makefile | 3 | 
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 | 
