diff options
Diffstat (limited to 'extra/glpk/PKGBUILD')
-rw-r--r-- | extra/glpk/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/glpk/PKGBUILD b/extra/glpk/PKGBUILD index 730111e79..b050d41b0 100644 --- a/extra/glpk/PKGBUILD +++ b/extra/glpk/PKGBUILD @@ -7,7 +7,7 @@ pkgname=glpk pkgver=4.52 pkgrel=2 pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/glpk/glpk.html" license=('GPL') depends=('glibc') @@ -19,7 +19,7 @@ build() { ./configure --prefix=/usr - if [ "$CARCH" == "x86_64" ]; then + if [ "$CARCH" != "i686" ]; then make CFLAGS="$CFLAGS -fPIC" else make |