diff options
Diffstat (limited to 'main/aumix/APKBUILD')
-rw-r--r-- | main/aumix/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/aumix/APKBUILD b/main/aumix/APKBUILD index 6a2f304cfa..aef2bae5e9 100644 --- a/main/aumix/APKBUILD +++ b/main/aumix/APKBUILD @@ -18,11 +18,15 @@ prepare() { build() { cd "$srcdir"/aumix-$pkgver - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ --mandir=/usr/share/man \ --without-gtk1 \ --without-gtk \ - --disable-nls + --disable-nls \ + || return 1 make || return 1 } |