diff options
Diffstat (limited to 'main/lzo/APKBUILD')
-rw-r--r-- | main/lzo/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/lzo/APKBUILD b/main/lzo/APKBUILD index 958e0ac12c..c522e773a5 100644 --- a/main/lzo/APKBUILD +++ b/main/lzo/APKBUILD @@ -16,11 +16,15 @@ source="http://www.oberhumer.com/opensource/lzo/download/$pkgname-$pkgver.tar.gz build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ - --enable-shared + --enable-shared \ + || return 1 make || return 1 } |