summaryrefslogtreecommitdiff
path: root/include/toplevel.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-10-18 19:37:34 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-10-18 19:37:34 +0000
commit87e0a3cf0f45f9b2029654b8d2ff154137ca78b2 (patch)
treef12f252c938fcbaaf6515eb31c47aceb355f43fa /include/toplevel.mk
parentdf90f52b5a93b26ce98e8e8fee058e1c6a9e0c8f (diff)
downloadmtk-20170518-87e0a3cf0f45f9b2029654b8d2ff154137ca78b2.zip
mtk-20170518-87e0a3cf0f45f9b2029654b8d2ff154137ca78b2.tar.gz
mtk-20170518-87e0a3cf0f45f9b2029654b8d2ff154137ca78b2.tar.bz2
don't overwrite .config if it's a symlink (fixes scripts/env problems)
SVN-Revision: 13005
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 9d0eb25..ab4448a 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