mirror of https://github.com/hak5/openwrt.git
toolchain: fix libgcc and libgfortran packages for avr32 and coldfire
SVN-Revision: 32772lede-17.01
parent
05340cc602
commit
c3b98c8fc7
|
@ -355,12 +355,12 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|||
|
||||
define Package/libgcc/install
|
||||
$(INSTALL_DIR) $(1)/lib
|
||||
$(if $(TARGET_avr32)$(TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/)
|
||||
$(if $(CONFIG_TARGET_avr32)$(CONFIG_TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/)
|
||||
endef
|
||||
|
||||
define Package/libgfortran/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(if $(TARGET_avr32)$(TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/)
|
||||
$(if $(CONFIG_TARGET_avr32)$(CONFIG_TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/)
|
||||
endef
|
||||
|
||||
define Package/libssp/install
|
||||
|
|
Loading…
Reference in New Issue