diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-10-18 19:37:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-10-18 19:37:34 +0000 |
commit | c26622f0270d3e0cb33287040cdc47417cdbaaa5 (patch) | |
tree | 05e3d1ed4b53b237390aca6c4012cc54e278434a | |
parent | e01192451189a33a5b9dc501fd3cbb1c596e30a2 (diff) | |
download | upstream-c26622f0270d3e0cb33287040cdc47417cdbaaa5.tar.gz upstream-c26622f0270d3e0cb33287040cdc47417cdbaaa5.tar.bz2 upstream-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
-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 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 |