diff options
Diffstat (limited to 'main/libnet/APKBUILD')
-rw-r--r-- | main/libnet/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/libnet/APKBUILD b/main/libnet/APKBUILD index fabb1c7d49..295eaef34c 100644 --- a/main/libnet/APKBUILD +++ b/main/libnet/APKBUILD @@ -15,7 +15,11 @@ source="http://downloads.sourceforge.net/project/libnet-dev/libnet-$pkgver.tar.g build() { cd "$srcdir"/$pkgname-$pkgver - ./configure --prefix=/usr + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 make || return 1 } |