Bläddra i källkod

gcc: fix build with musl.

Signed-off-by: Christian Beier <cb@shoutrlabs.com>
Christian Beier 9 år sedan
förälder
incheckning
82e56d1bf8
1 ändrade filer med 4 tillägg och 0 borttagningar
  1. 4
    0
      devel/gcc/Makefile

+ 4
- 0
devel/gcc/Makefile Visa fil

@@ -54,6 +54,10 @@ define Build/Prepare
54 54
 # 	we have to download additional stuff before patching
55 55
 	(cd $(PKG_BUILD_DIR) && ./contrib/download_prerequisites)
56 56
 	$(Build/Patch)
57
+#	poor man's fix for `none-openwrt-linux' not recognized when building with musl
58
+	cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/mpfr/
59
+	cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/gmp/
60
+	cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/mpc/
57 61
 endef
58 62
 
59 63