summaryrefslogtreecommitdiff
path: root/include/toplevel.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-06-15 14:34:00 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-06-15 14:34:00 +0000
commit8b41afa584e513ec64156fc15058a0f6888d6b56 (patch)
tree00867541f67950294de51dec17a238b29c886360 /include/toplevel.mk
parentf2e997ac3836cfcbb68b708adf3db90524425f87 (diff)
downloadmtk-20170518-8b41afa584e513ec64156fc15058a0f6888d6b56.zip
mtk-20170518-8b41afa584e513ec64156fc15058a0f6888d6b56.tar.gz
mtk-20170518-8b41afa584e513ec64156fc15058a0f6888d6b56.tar.bz2
add some sanity checking
SVN-Revision: 11473
Diffstat (limited to 'include/toplevel.mk')
-rw-r--r--include/toplevel.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/toplevel.mk b/include/toplevel.mk
index 606e3e5..e13d667 100644
--- a/include/toplevel.mk
+++ b/include/toplevel.mk
@@ -45,7 +45,7 @@ prepare-tmpinfo: FORCE
touch $(TOPDIR)/tmp/.build
.config: ./scripts/config/conf prepare-tmpinfo
- @+if [ \! -f .config ]; 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