diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-19 23:32:33 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-19 23:32:33 +0000 |
commit | 3c567e64660209d140869fa0a448e11ed5031cd6 (patch) | |
tree | 3a84113de089ad5887fa004a7cccf365aee8e1b3 /Makefile | |
parent | ed96d7f92cd5ef65eb56dc95ed0df44b086e93ee (diff) |
Add support for BUILDROOT_DL_DIR environment variable, overriding DL_DIR
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,9 @@ noconfig_targets := menuconfig config oldconfig randconfig \ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) -include $(TOPDIR).config endif +ifneq ($(BUILDROOT_DL_DIR),) +BR2_DL_DIR:=$(BUILDROOT_DL_DIR) +endif # To put more focus on warnings, be less verbose as default # Use 'make V=1' to see the full commands |