diff options
| -rw-r--r-- | include/toplevel.mk | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/toplevel.mk b/include/toplevel.mk index 9d0eb2593..ab4448ae1 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -48,7 +48,7 @@ prepare-tmpinfo: FORCE  	touch $(TOPDIR)/tmp/.build  .config: ./scripts/config/conf prepare-tmpinfo $(if $(CONFIG_HAVE_DOT_CONFIG),,FORCE) -	@+if [ \! -f .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \ +	@+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \  		[ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \  		$(_SINGLE)$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \  	fi | 
