index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | extra/gd/PKGBUILD | 7 |
diff --git a/extra/gd/PKGBUILD b/extra/gd/PKGBUILD index 2fcaf6a6..0c2b32a9 100644 --- a/extra/gd/PKGBUILD +++ b/extra/gd/PKGBUILD @@ -21,5 +21,8 @@ if [ "${CARCH}" = "pentium4" ]; then )" fi -# for all platforms we disable testing for now -unset check +# test suite assumes fpmath=sse when compring test results, disable tests +# for non-pentium4 builds +if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then + unset check +fi |