Browse Source

fix typo

SVN-Revision: 11474
Felix Fietkau 17 years ago
parent
commit
980b80ddc6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/toplevel.mk

+ 1 - 1
include/toplevel.mk

@@ -45,7 +45,7 @@ prepare-tmpinfo: FORCE
 	touch $(TOPDIR)/tmp/.build
 
 .config: ./scripts/config/conf prepare-tmpinfo
-	@+if [ -f .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
+	@+if [ \! -f .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
 		[ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
 		$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
 	fi