diff options
Diffstat (limited to 'main/alpine/APKBUILD')
-rw-r--r-- | main/alpine/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/alpine/APKBUILD b/main/alpine/APKBUILD index e379a371ab..fe37375374 100644 --- a/main/alpine/APKBUILD +++ b/main/alpine/APKBUILD @@ -37,12 +37,16 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ --without-passfile \ --without-tcl \ --disable-shared \ --with-system-pinerc=/etc/alpine.d/pine.conf \ - --with-system-fixed-pinerc=/etc/alpine.d/pine.conf.fixed + --with-system-fixed-pinerc=/etc/alpine.d/pine.conf.fixed \ + || return 1 make } |