lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 82e56d1bf871712e9baa5c8199e12bec210cfa8e
parent 0f4773bd3f1b5a0939391b9069eda3cc1f0d1753
Author: Christian Beier <cb@shoutrlabs.com>
Date:   Tue, 21 Jul 2015 15:58:29 +0200

gcc: fix build with musl.

Signed-off-by: Christian Beier <cb@shoutrlabs.com>

Diffstat:
Mdevel/gcc/Makefile | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/devel/gcc/Makefile b/devel/gcc/Makefile @@ -54,6 +54,10 @@ define Build/Prepare # we have to download additional stuff before patching (cd $(PKG_BUILD_DIR) && ./contrib/download_prerequisites) $(Build/Patch) +# poor man's fix for `none-openwrt-linux' not recognized when building with musl + cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/mpfr/ + cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/gmp/ + cp $(PKG_BUILD_DIR)/config.sub $(PKG_BUILD_DIR)/mpc/ endef