diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-25 14:29:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-25 14:29:17 +0000 |
commit | a97281ce19114fd524f9674c7fcceacf4d2a0a1c (patch) | |
tree | 28b13c781b11424c634ef35bbec2de8ca7c7d993 /package/libs/toolchain/Makefile | |
parent | b3a7fffcb0eb94e70f20e1d9e79563a14774dfdb (diff) | |
download | upstream-a97281ce19114fd524f9674c7fcceacf4d2a0a1c.tar.gz upstream-a97281ce19114fd524f9674c7fcceacf4d2a0a1c.tar.bz2 upstream-a97281ce19114fd524f9674c7fcceacf4d2a0a1c.zip |
toolchain: drop obsolete references to the coldfire target
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44975 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs/toolchain/Makefile')
-rw-r--r-- | package/libs/toolchain/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libs/toolchain/Makefile b/package/libs/toolchain/Makefile index be61d2fa8b..27865decb7 100644 --- a/package/libs/toolchain/Makefile +++ b/package/libs/toolchain/Makefile @@ -397,17 +397,17 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) define Package/libgcc/install $(INSTALL_DIR) $(1)/lib - $(if $(CONFIG_TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/) + $(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/ endef define Package/libatomic/install $(INSTALL_DIR) $(1)/lib - $(if $(CONFIG_GCC_VERSION_4_6)$(CONFIG_TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libatomic.so.* $(1)/lib/) + $(if $(CONFIG_GCC_VERSION_4_6),,$(CP) $(TOOLCHAIN_DIR)/lib/libatomic.so.* $(1)/lib/) endef define Package/libgfortran/install $(INSTALL_DIR) $(1)/usr/lib - $(if $(CONFIG_TARGET_coldfire),,$(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/) + $(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/ endef define Package/libssp/install |