diff options
| author | Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> | 2014-12-24 08:54:24 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-24 11:41:05 +0100 |
| commit | 38f09d6873436cfe4606ae32adbe4ac99bb8ad61 (patch) | |
| tree | 6643ba4b0a47bf0532a20a26e2f3e62ac683a640 /package/binutils | |
| parent | 7163d7f5e7af3540a95455c871f2caa87061ab93 (diff) | |
| download | buildroot-38f09d6873436cfe4606ae32adbe4ac99bb8ad61.tar.gz buildroot-38f09d6873436cfe4606ae32adbe4ac99bb8ad61.zip | |
package: indentation cleanup
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/binutils')
| -rw-r--r-- | package/binutils/binutils.mk | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index 9a9bb94098..1ff7fbafa5 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -42,15 +42,18 @@ endif # they also contain the gdb sources, but gdb shouldn't be built, so we # disable it. BINUTILS_DISABLE_GDB_CONF_OPTS = \ - --disable-sim --disable-gdb + --disable-sim \ + --disable-gdb # We need to specify host & target to avoid breaking ARM EABI -BINUTILS_CONF_OPTS = --disable-multilib --disable-werror \ - --host=$(GNU_TARGET_NAME) \ - --target=$(GNU_TARGET_NAME) \ - --enable-install-libiberty \ - $(BINUTILS_DISABLE_GDB_CONF_OPTS) \ - $(BINUTILS_EXTRA_CONFIG_OPTIONS) +BINUTILS_CONF_OPTS = \ + --disable-multilib \ + --disable-werror \ + --host=$(GNU_TARGET_NAME) \ + --target=$(GNU_TARGET_NAME) \ + --enable-install-libiberty \ + $(BINUTILS_DISABLE_GDB_CONF_OPTS) \ + $(BINUTILS_EXTRA_CONFIG_OPTIONS) # Don't build documentation. It takes up extra space / build time, # and sometimes needs specific makeinfo versions to work @@ -64,13 +67,16 @@ endif # "host" binutils should actually be "cross" # We just keep the convention of "host utility" for now -HOST_BINUTILS_CONF_OPTS = --disable-multilib --disable-werror \ - --target=$(GNU_TARGET_NAME) \ - --disable-shared --enable-static \ - --with-sysroot=$(STAGING_DIR) \ - --enable-poison-system-directories \ - $(BINUTILS_DISABLE_GDB_CONF_OPTS) \ - $(BINUTILS_EXTRA_CONFIG_OPTIONS) +HOST_BINUTILS_CONF_OPTS = \ + --disable-multilib \ + --disable-werror \ + --target=$(GNU_TARGET_NAME) \ + --disable-shared \ + --enable-static \ + --with-sysroot=$(STAGING_DIR) \ + --enable-poison-system-directories \ + $(BINUTILS_DISABLE_GDB_CONF_OPTS) \ + $(BINUTILS_EXTRA_CONFIG_OPTIONS) # We just want libbfd and libiberty, not the full-blown binutils in staging define BINUTILS_INSTALL_STAGING_CMDS |

