diff options
author | Rob Landley <rob@landley.net> | 2018-10-27 10:54:18 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-10-27 10:54:18 -0500 |
commit | c9571603db299259bca8271917688455696c14ce (patch) | |
tree | adbc53fbb6bae99e18ecabab22e73a8d72b52485 /kconfig | |
parent | 71984f3e28827549aad5b77939cdeeb62382ecb0 (diff) | |
download | toybox-c9571603db299259bca8271917688455696c14ce.tar.gz |
Fix "make distclean defconfig toybox" all on one line (good of $CROSS_COMPILER
changed), better error message when .config missing.
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index 7466d035..d62fe78b 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -18,7 +18,7 @@ oldconfig: $(obj)/conf $(KCONFIG_TOP) $< -o $(KCONFIG_TOP) silentoldconfig: $(obj)/conf $(KCONFIG_TOP) - $< -s $(KCONFIG_TOP) + yes | $< -o $(KCONFIG_TOP) > /dev/null randconfig: $(obj)/conf $(KCONFIG_TOP) $< -r $(KCONFIG_TOP) > /dev/null |