From: nbd Date: Tue, 26 Jun 2007 20:24:55 +0000 (+0000) Subject: don't include .config if DUMP is set X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=2e8859ece5b439968411adb9e3487cfcc86ce932 don't include .config if DUMP is set git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7738 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/rules.mk b/rules.mk index 1419f2f6a..6fbf88f80 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"' --