diff options
Diffstat (limited to 'main/libice/APKBUILD')
-rw-r--r-- | main/libice/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/libice/APKBUILD b/main/libice/APKBUILD index 9bf4fbb1f..50023319d 100644 --- a/main/libice/APKBUILD +++ b/main/libice/APKBUILD @@ -14,8 +14,12 @@ source="http://xorg.freedesktop.org/releases/individual/lib/libICE-$pkgver.tar.b depends_dev="xproto" build () { cd "$srcdir"/libICE-$pkgver - ./configure --prefix=/usr \ - --sysconfdir=/etc + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + || return 1 make || return 1 } |