diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-02-24 11:58:32 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-02-27 06:23:05 +0000 |
commit | f9110e603a3ce00536142e4caeae8f3db1fc48a1 (patch) | |
tree | bab8401b2e1dbbcfd74e8633d8ca26f3318a57e5 /main/gcc | |
parent | f5c4b298918ba1d5ff85861cdeed9eff2cbcd5b9 (diff) | |
download | aports-f9110e603a3ce00536142e4caeae8f3db1fc48a1.tar.bz2 aports-f9110e603a3ce00536142e4caeae8f3db1fc48a1.tar.xz |
scripts/bootstrap.sh, main/{binutils,gcc,musl}: no more options="toolchain"
abuild has been updated to figure this one out from $BOOTSTRAP.
Diffstat (limited to 'main/gcc')
-rw-r--r-- | main/gcc/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index 47e1007d91..ea73b5bd85 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -13,7 +13,6 @@ url="http://gcc.gnu.org" arch="all" license="GPL LGPL" _gccrel=$pkgver-r$pkgrel -options="toolchain" depends="binutils$_target isl" makedepends_build="gcc$_cross g++$_cross paxmark bison flex texinfo gawk zip gmp-dev mpfr-dev mpc1-dev zlib-dev" makedepends_host="linux-headers gmp-dev mpfr-dev mpc1-dev isl-dev zlib-dev !gettext-dev" @@ -42,7 +41,7 @@ if [ "$CARCH" = aarch64 ]; then fi if [ "$CHOST" != "$CTARGET" ]; then - if [ "$BOOTSTRAP" ]; then + if [ "$BOOTSTRAP" = nolibc ]; then LANG_CXX=false LANG_ADA=false LIBGCC=false |