Browse Source

don't include .config if DUMP is set

SVN-Revision: 7738
Felix Fietkau 18 years ago
parent
commit
4b0c035a93
1 changed files with 3 additions and 1 deletions
  1. 3 1
      rules.mk

+ 3 - 1
rules.mk

@@ -5,7 +5,9 @@
 # See /LICENSE for more information.
 # See /LICENSE for more information.
 #
 #
 
 
--include $(TOPDIR)/.config
+ifeq ($(DUMP),)
+  -include $(TOPDIR)/.config
+endif
 include $(TOPDIR)/include/verbose.mk
 include $(TOPDIR)/include/verbose.mk
 
 
 export SHELL=/usr/bin/env bash -c '. $(TOPDIR)/include/shell.sh; eval "$$2"' --
 export SHELL=/usr/bin/env bash -c '. $(TOPDIR)/include/shell.sh; eval "$$2"' --