fix gdb installation (patch from #809)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4945 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
8f9b08fbd8
commit
2aea2ee116
|
@ -40,9 +40,16 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Install
|
define Build/Install
|
||||||
install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb
|
(cd $(STAGING_DIR)/bin; \
|
||||||
cd $(STAGING_DIR)/bin && \
|
install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb; \
|
||||||
ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-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
|
endef
|
||||||
|
|
||||||
$(eval $(call HostBuild))
|
$(eval $(call HostBuild))
|
||||||
|
|
Loading…
Reference in New Issue