From 62c174067616a911ef77a8cf02a6cc2220e534ec Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 19 Aug 2010 12:49:51 +0000 Subject: toolchain: fix the sysroot mess by getting rid of $(TOOLCHAIN_DIR)/usr and moving it back to $(TOOLCHAIN_DIR), this change makes the toolchain relocatable again, which should fix the SDK SVN-Revision: 22723 --- toolchain/gdb/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'toolchain/gdb') diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index df4fe55a4a..0aaa5e0dcb 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -20,7 +20,7 @@ define Host/Configure gdb_cv_func_sigsetjmp=yes \ CFLAGS="-O2" \ $(HOST_BUILD_DIR)/configure \ - --prefix=$(TOOLCHAIN_DIR)/usr \ + --prefix=$(TOOLCHAIN_DIR) \ --build=$(GNU_HOST_NAME) \ --host=$(GNU_HOST_NAME) \ --target=$(REAL_GNU_TARGET_NAME) \ @@ -38,17 +38,17 @@ define Host/Compile endef define Host/Install - mkdir -p $(TOOLCHAIN_DIR)/usr/bin - $(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/usr/bin/$(TARGET_CROSS)gdb - ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/usr/bin/$(GNU_TARGET_NAME)-gdb - strip $(TOOLCHAIN_DIR)/usr/bin/$(TARGET_CROSS)gdb + mkdir -p $(TOOLCHAIN_DIR)/bin + $(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb + ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb + strip $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb endef define Host/Clean rm -rf \ $(HOST_BUILD_DIR) \ - $(TOOLCHAIN_DIR)/usr/bin/$(TARGET_CROSS)gdb \ - $(TOOLCHAIN_DIR)/usr/bin/$(GNU_TARGET_NAME)-gdb + $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb \ + $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb endef $(eval $(call HostBuild)) -- cgit v1.2.3