diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-31 11:42:45 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-31 11:43:52 +0200 |
commit | b7987c21aead55263d6740cb7204e20478330211 (patch) | |
tree | a42930912d50e25fd30cd271dc09c29f761bcd4e /toolchain/gdb/Makefile | |
parent | 14773be6c17582744586b1b9e644f4db33b3e63d (diff) |
update to latest upstream version
Diffstat (limited to 'toolchain/gdb/Makefile')
-rw-r--r-- | toolchain/gdb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index a66e3fe7d..d83b7def9 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -12,6 +12,7 @@ endif $(WRKBUILD)/.headers: $(WRKBUILD)/.configured: + $(SED) 's/install_to_$(INSTALL_DEST) //' ${WRKBUILD}/libiberty/Makefile.in (cd $(WRKBUILD); \ gdb_cv_func_sigsetjmp=yes \ ./configure \ @@ -31,6 +32,7 @@ $(WRKBUILD)/.configured: --disable-sim \ --disable-tui \ --disable-werror \ + --disable-install-libiberty \ --without-x \ ); touch $@ @@ -40,7 +42,7 @@ $(WRKBUILD)/.compiled: touch $@ $(WRKBUILD)/.installed: - install -c $(WRKBUILD)/gdb/gdb $(TARGET_CROSS)gdb + $(INSTALL_BIN) $(WRKBUILD)/gdb/gdb $(TARGET_CROSS)gdb touch $@ include ${TOPDIR}/mk/toolchain.mk |