From 4b0c035a935f151eba1b4892800f3e6a5b1b6431 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Tue, 26 Jun 2007 20:24:55 +0000
Subject: [PATCH] don't include .config if DUMP is set

SVN-Revision: 7738
---
 rules.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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"' --
-- 
GitLab