[source] include/toplevel.mk: fix defconfig when ~/.openwrt/defconfig exists - take 2

LEDE Commits lede-commits at lists.infradead.org
Wed Jul 6 01:40:21 PDT 2016


blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/?p=source.git;a=commitdiff;h=1b13b3523198230825faf097b2abea0345e0cb35

commit 1b13b3523198230825faf097b2abea0345e0cb35
Author: John Crispin <john at phrozen.org>
AuthorDate: Wed Jul 6 10:34:44 2016 +0200

    include/toplevel.mk: fix defconfig when ~/.openwrt/defconfig exists - take 2
    
    commit 5b728074160b ("include/toplevel.mk: fix defconfig when
    ~/.openwrt/defconfig exists") was missing a !
    
    Signed-off-by: John Crispin <john at phrozen.org>
---
 include/toplevel.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/toplevel.mk b/include/toplevel.mk
index 3844f3c..e13acaf 100644
--- a/include/toplevel.mk
+++ b/include/toplevel.mk
@@ -110,7 +110,7 @@ config-clean: FORCE
 
 defconfig: scripts/config/conf prepare-tmpinfo FORCE
 	touch .config
-	@if [  -s .config -a -e $(HOME)/.openwrt/defconfig ]; then cp $(HOME)/.openwrt/defconfig .config; fi
+	@if [ ! -s .config -a -e $(HOME)/.openwrt/defconfig ]; then cp $(HOME)/.openwrt/defconfig .config; fi
 	$< --defconfig=.config Config.in
 
 confdefault-y=allyes



More information about the lede-commits mailing list