don't overwrite .config if it's a symlink (fixes scripts/env problems)

SVN-Revision: 13005
This commit is contained in:
Felix Fietkau 2008-10-18 19:37:34 +00:00
parent df90f52b5a
commit 87e0a3cf0f
1 changed files with 1 additions and 1 deletions

View File

@ -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