X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a35fb6c438c11e118d9241be1cdf6d3e06b7c9bb..f52d66ff00b24111f87c274d3d7085ef2e1d27b1:/toolchain/gdb/Makefile diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index f5c0bf372..34dca715a 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -14,7 +14,7 @@ PKG_MD5SUM:=05b928f41fa5b482e49ca2c24762a0ae PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/gdb PKG_CAT:=bzcat -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk @@ -40,9 +40,16 @@ define Build/Compile endef define Build/Install - install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb - cd $(STAGING_DIR)/bin && \ - ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-gdb + (cd $(STAGING_DIR)/bin; \ + install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb; \ + ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-gdb; \ + ); +endef + +define Build/Clean + rm -rf $(PKG_BUILD_DIR) + rm -f $(STAGING_DIR)/bin/$(TARGET_CROSS)gdb + rm -f $(STAGING_DIR)/bin/$(GNU_TARGET_NAME)-gdb endef $(eval $(call HostBuild))