aboutsummaryrefslogtreecommitdiffstats
path: root/include
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
commitc26622f0270d3e0cb33287040cdc47417cdbaaa5 (patch)
tree05e3d1ed4b53b237390aca6c4012cc54e278434a /include
parente01192451189a33a5b9dc501fd3cbb1c596e30a2 (diff)
downloadmaster-187ad058-c26622f0270d3e0cb33287040cdc47417cdbaaa5.tar.gz
master-187ad058-c26622f0270d3e0cb33287040cdc47417cdbaaa5.tar.bz2
master-187ad058-c26622f0270d3e0cb33287040cdc47417cdbaaa5.zip
don't overwrite .config if it's a symlink (fixes scripts/env problems)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13005 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r--include/toplevel.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/toplevel.mk b/include/toplevel.mk
index 9d0eb25933..ab4448ae10 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