diff options
Diffstat (limited to 'main/libxres')
-rw-r--r-- | main/libxres/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/libxres/APKBUILD b/main/libxres/APKBUILD index 2abb57fed0..c1cdafcf55 100644 --- a/main/libxres/APKBUILD +++ b/main/libxres/APKBUILD @@ -25,8 +25,12 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr \ - --sysconfdir=/etc + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + || return 1 make || return 1 } |