diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-06-15 14:49:00 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-06-15 14:49:00 +0000 |
commit | 18c6fa2b2f7cdf31bd054e94d1b62a797c32e8ed (patch) | |
tree | 3ba8642bdfd7579305d57333cd650a3756bf928c | |
parent | 285af890849a23b26bac97f5e27a552e784074f5 (diff) |
fix typo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11474 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 e13d66781..e85ed2d33 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 ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; 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 |