diff options
Diffstat (limited to 'main/gmp5/APKBUILD')
-rw-r--r-- | main/gmp5/APKBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/main/gmp5/APKBUILD b/main/gmp5/APKBUILD index f57a04f65..cf624951d 100644 --- a/main/gmp5/APKBUILD +++ b/main/gmp5/APKBUILD @@ -24,14 +24,15 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr \ - --build=${CBUILD} \ - --host=${CHOST} \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ --with-sysroot=${CBUILDROOT} \ + --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --localstatedir=/var/state/gmp \ - --enable-cxx \ + --enable-cxx \ --with-pic \ || return 1 |