From 5a25558ed3bd1fe17a5101e537f7a9134e028349 Mon Sep 17 00:00:00 2001 From: mbm Date: Sat, 7 Apr 2007 10:31:46 +0000 Subject: [PATCH] fix menuconfig checks git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6879 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 43ed005b8a..fffc3bf5da 100644 --- a/Makefile +++ b/Makefile @@ -90,8 +90,9 @@ oldconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORC $< -o Config.in menuconfig: scripts/config/mconf tmp/.config-target.in tmp/.config-package.in FORCE - @[ -f .config ] || \ - [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config + @[ -f .config ] || { \ + [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \ + } $< Config.in kernel_menuconfig: .config FORCE -- 2.11.0