diff options
Diffstat (limited to 'package/binutils')
-rw-r--r-- | package/binutils/binutils.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index 1c8a79d07..3293e185c 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -27,8 +27,8 @@ BINUTILS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) # We need to specify host & target to avoid breaking ARM EABI BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ - --host=$(REAL_GNU_TARGET_NAME) \ - --target=$(REAL_GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --target=$(GNU_TARGET_NAME) \ --enable-shared \ $(BINUTILS_EXTRA_CONFIG_OPTIONS) @@ -40,7 +40,7 @@ endif # "host" binutils should actually be "cross" # We just keep the convention of "host utility" for now HOST_BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ - --target=$(REAL_GNU_TARGET_NAME) \ + --target=$(GNU_TARGET_NAME) \ --disable-shared --enable-static \ --with-sysroot=$(STAGING_DIR) \ $(BINUTILS_EXTRA_CONFIG_OPTIONS) |