diff options
author | Marian Buschsieweke <marian.buschsieweke@ovgu.de> | 2022-04-06 10:13:43 +0200 |
---|---|---|
committer | alice <alice@ayaya.dev> | 2022-04-06 09:57:30 +0000 |
commit | 71a5813d2fd9e463eec8b5c0a1de33797465058a (patch) | |
tree | 19d2d710fa21aa534590853e46d5c65c09195084 | |
parent | 562763ab263c155f921954f6ad19003972665d6a (diff) | |
download | aports-71a5813d2fd9e463eec8b5c0a1de33797465058a.tar.gz aports-71a5813d2fd9e463eec8b5c0a1de33797465058a.tar.bz2 aports-71a5813d2fd9e463eec8b5c0a1de33797465058a.tar.xz |
community/newlib: reenable targets
To speed up local builds for debugging I limited the number of targets
to build to RISC-V, but forgot to undo this for !27996 - this fixes
the sloppiness :/
-rw-r--r-- | community/newlib/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/community/newlib/APKBUILD b/community/newlib/APKBUILD index bcf17a4ce1..2a90650ca1 100644 --- a/community/newlib/APKBUILD +++ b/community/newlib/APKBUILD @@ -11,10 +11,9 @@ _targets=" case "$CARCH" in x86_64|aarch64|ppc64le) _targets="$_targets or1k-elf" esac -_targets="riscv-none-elf" pkgname=newlib pkgver=4.2.0.20211231 -pkgrel=0 +pkgrel=1 pkgdesc="C standard library implementation intended for use on embedded systems" url="https://www.sourceware.org/newlib/" makedepends="texinfo" |