aboutsummaryrefslogtreecommitdiffstats
path: root/rules.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-06-26 20:24:55 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-06-26 20:24:55 +0000
commit9cbf7f3fdf605a686edf90e455ec8548b9308636 (patch)
treeae6270f6f75b1fbcf24245aaa949a2a480ddaa26 /rules.mk
parentdabbac5967d03ae0efdc423925d3783f8b63c626 (diff)
downloadupstream-9cbf7f3fdf605a686edf90e455ec8548b9308636.tar.gz
upstream-9cbf7f3fdf605a686edf90e455ec8548b9308636.tar.bz2
upstream-9cbf7f3fdf605a686edf90e455ec8548b9308636.zip
don't include .config if DUMP is set
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7738 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk4
1 files changed, 3 insertions, 1 deletions
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"' --