diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-26 20:24:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-26 20:24:55 +0000 |
commit | 4b0c035a935f151eba1b4892800f3e6a5b1b6431 (patch) | |
tree | d1f47db50f1b5ce51d40ee090b45cfcd071fff10 | |
parent | 13790041c140c07d4b247939c3e8de563ab2f20f (diff) | |
download | upstream-4b0c035a935f151eba1b4892800f3e6a5b1b6431.tar.gz upstream-4b0c035a935f151eba1b4892800f3e6a5b1b6431.tar.bz2 upstream-4b0c035a935f151eba1b4892800f3e6a5b1b6431.zip |
don't include .config if DUMP is set
SVN-Revision: 7738
-rw-r--r-- | rules.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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"' -- |