summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()