diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-04 16:03:55 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 11:46:15 +0200 |
commit | 4c8872d8e71a99a1eee448d57d25403dbab9dafc (patch) | |
tree | eee482931cc51c5eaec0853b16b00ea37e29a86f | |
parent | 2295780a950cbcd8eb76b01ceb15503b0f973f55 (diff) | |
download | buildroot-4c8872d8e71a99a1eee448d57d25403dbab9dafc.tar.gz buildroot-4c8872d8e71a99a1eee448d57d25403dbab9dafc.zip |
Makefile: remove $(HOST_DIR)/usr from BR_PATH
Now $(HOST_DIR)/usr is a symlink to $(HOST_DIR), it makes no sense to
still have it in BR_PATH.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -440,7 +440,7 @@ TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf HOST_DIR := $(call qstrip,$(BR2_HOST_DIR)) # Quotes are needed for spaces and all in the original PATH content. -BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin:$(PATH)" +BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(PATH)" # Location of a file giving a big fat warning that output/target # should not be used as the root filesystem. |