summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-04-07 10:11:11 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2012-04-07 10:11:11 +0200
commit3b4c5929151db9bc1ea2e2e4f4ad22fed88a1a34 (patch)
tree5edcd8d4b79cc0bc1d74b561f9eec05717c1d928
parent750a8fc982e640e6ef62f80afd99469959f407ad (diff)
Try disabling gcc tests in a different way.
-rw-r--r--core/gcc/PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/gcc/PKGBUILD b/core/gcc/PKGBUILD
index fc95dfa89..10e09e6b8 100644
--- a/core/gcc/PKGBUILD
+++ b/core/gcc/PKGBUILD
@@ -106,7 +106,7 @@ build() {
check() {
# Takes days and no one here uses it.
- [ "$CARCH" != "mips64el" ] || return
+ if [ "$CARCH" != "mips64el" ] ; then
cd gcc-build
# increase stack size to prevent test failures
@@ -116,6 +116,7 @@ check() {
# do not abort on error as some are "expected"
make -k check || true
${_basedir}/contrib/test_summary
+ fi
}
package_gcc-libs()