diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-20 18:52:45 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-20 18:52:45 +0200 |
commit | 81cc989543d935f11be84b3fb0696a57c2d9abd2 (patch) | |
tree | 54528a3c67afd7f78d886b31165ddd3542f6dd29 /extra/python/PKGBUILD | |
parent | f201c0c97570e91af0fcec400d827a3f1bba79cc (diff) |
Fix typo preventing python build on mips64el.
Diffstat (limited to 'extra/python/PKGBUILD')
-rw-r--r-- | extra/python/PKGBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/python/PKGBUILD b/extra/python/PKGBUILD index 93db5fc80..0b5a21ac3 100644 --- a/extra/python/PKGBUILD +++ b/extra/python/PKGBUILD @@ -34,7 +34,7 @@ build() { rm -r Modules/_ctypes/{darwin,libffi}* - if [ "$CARCH" = "mips64el" ]; then + if [ "$CARCH" != "mips64el" ]; then extraconf=--with-valgrind else extraconf="" |