Browse Source

redirecting config/conf output to /dev/null is a bad idea

In fact, this leads to 'make oldconfig' waiting for user input without
prompting her for any.
Phil Sutter 14 năm trước cách đây
mục cha
commit
5bf1382aaf
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      mk/build.mk

+ 1 - 1
mk/build.mk

@@ -393,7 +393,7 @@ menuconfig: $(CONFIG)/mconf defconfig .menu
 
 _config: $(CONFIG)/conf .menu
 	-@touch .config
-	@$(CONFIG)/conf ${W} $(CONFIG_CONFIG_IN) >/dev/null
+	@$(CONFIG)/conf ${W} $(CONFIG_CONFIG_IN)
 	${POSTCONFIG}
 
 .NOTPARALLEL: _mconfig