diff options
author | Rob Landley <rob@landley.net> | 2015-06-10 11:58:47 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-06-10 11:58:47 -0500 |
commit | 324e615106907c69e920b44e1a9c01c45e4d0e8c (patch) | |
tree | e23edab2d0435ea1805b40bc99ec99f39ef09bdf /kconfig | |
parent | 94983f2dddde86e8f121abe97a28aa1f6c87a3db (diff) | |
download | toybox-324e615106907c69e920b44e1a9c01c45e4d0e8c.tar.gz |
Cosmetic tweak: no need for pages of text from "make defconfig" and friends.
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index 7eaee955..a2547cc0 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -21,16 +21,16 @@ silentoldconfig: $(obj)/conf $(KCONFIG_TOP) $< -s $(KCONFIG_TOP) randconfig: $(obj)/conf $(KCONFIG_TOP) - $< -r $(KCONFIG_TOP) + $< -r $(KCONFIG_TOP) > /dev/null allyesconfig: $(obj)/conf $(KCONFIG_TOP) - $< -y $(KCONFIG_TOP) + $< -y $(KCONFIG_TOP) > /dev/null allnoconfig: $(obj)/conf $(KCONFIG_TOP) - $< -n $(KCONFIG_TOP) + $< -n $(KCONFIG_TOP) > /dev/null defconfig: $(obj)/conf $(KCONFIG_TOP) - $< -D /dev/null $(KCONFIG_TOP) + $< -D /dev/null $(KCONFIG_TOP) > /dev/null # Help text used by make help help:: |