diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:24 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:22:29 +0200 |
commit | 685f44de98caec74eefd048b01b8550b63784300 (patch) | |
tree | be5b45caf42b2262ce85b8ef6980cc6ddcd6eca1 /package/gcc | |
parent | 3b91bd479150a599970c9121a585df9fc1566ff7 (diff) | |
download | buildroot-685f44de98caec74eefd048b01b8550b63784300.tar.gz buildroot-685f44de98caec74eefd048b01b8550b63784300.zip |
Globally replace $(HOST_DIR)/usr with $(HOST_DIR)
Since things are no longer installed in $(HOST_DIR)/usr, the callers
should also not refer to it.
This is a mechanical change with
git grep -l '\$(HOST_DIR)/usr' | xargs sed -i 's%\$(HOST_DIR)/usr%$(HOST_DIR)%g'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/gcc.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk index bdeb956972..ff69209f84 100644 --- a/package/gcc/gcc.mk +++ b/package/gcc/gcc.mk @@ -92,9 +92,9 @@ HOST_GCC_COMMON_CONF_OPTS = \ --with-gnu-ld \ --disable-libssp \ --disable-multilib \ - --with-gmp=$(HOST_DIR)/usr \ - --with-mpc=$(HOST_DIR)/usr \ - --with-mpfr=$(HOST_DIR)/usr \ + --with-gmp=$(HOST_DIR) \ + --with-mpc=$(HOST_DIR) \ + --with-mpfr=$(HOST_DIR) \ --with-pkgversion="Buildroot $(BR2_VERSION_FULL)" \ --with-bugurl="http://bugs.buildroot.net/" @@ -169,12 +169,12 @@ endif ifeq ($(BR2_GCC_ENABLE_GRAPHITE),y) HOST_GCC_COMMON_DEPENDENCIES += host-isl -HOST_GCC_COMMON_CONF_OPTS += --with-isl=$(HOST_DIR)/usr +HOST_GCC_COMMON_CONF_OPTS += --with-isl=$(HOST_DIR) # gcc 5 doesn't need cloog any more, see # https://gcc.gnu.org/gcc-5/changes.html ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_5),) HOST_GCC_COMMON_DEPENDENCIES += host-cloog -HOST_GCC_COMMON_CONF_OPTS += --with-cloog=$(HOST_DIR)/usr +HOST_GCC_COMMON_CONF_OPTS += --with-cloog=$(HOST_DIR) endif else HOST_GCC_COMMON_CONF_OPTS += --without-isl --without-cloog |