From: Felix Fietkau Date: Tue, 26 Jun 2007 20:24:55 +0000 (+0000) Subject: don't include .config if DUMP is set X-Git-Tag: reboot~28842 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=4b0c035a935f151eba1b4892800f3e6a5b1b6431;p=openwrt%2Fstaging%2Fchunkeey.git don't include .config if DUMP is set SVN-Revision: 7738 --- diff --git a/rules.mk b/rules.mk index 1419f2f6a0..6fbf88f801 100644 --- a/rules.mk +++ b/rules.mk @@ -5,7 +5,9 @@ # See /LICENSE for more information. # --include $(TOPDIR)/.config +ifeq ($(DUMP),) + -include $(TOPDIR)/.config +endif include $(TOPDIR)/include/verbose.mk export SHELL=/usr/bin/env bash -c '. $(TOPDIR)/include/shell.sh; eval "$$2"' --