diff options
author | tcely <tcely@users.noreply.github.com> | 2019-05-28 03:03:49 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-28 07:26:26 +0000 |
commit | 3c4e7e7517b622c8ce3694f548e5e3f6c3c5db4e (patch) | |
tree | b7d05fdaabcc3bf3806c4a37d38a59609840cb9e /main/iptables | |
parent | 2ec446f6eb3b097ee8d9c3f7effef4c87eeb33b1 (diff) | |
download | aports-3c4e7e7517b622c8ce3694f548e5e3f6c3c5db4e.tar.bz2 aports-3c4e7e7517b622c8ce3694f548e5e3f6c3c5db4e.tar.xz |
main/iptables: improve
Diffstat (limited to 'main/iptables')
-rw-r--r-- | main/iptables/APKBUILD | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/main/iptables/APKBUILD b/main/iptables/APKBUILD index f4d706113d..5f9090e613 100644 --- a/main/iptables/APKBUILD +++ b/main/iptables/APKBUILD @@ -33,8 +33,8 @@ build() { export CFLAGS="$CFLAGS -D_GNU_SOURCE" ./configure \ - --build=$CBUILD \ - --host=$CHOST \ + --build="$CBUILD" \ + --host="$CHOST" \ --prefix=/usr \ --mandir=/usr/share/man \ --sbindir=/sbin \ @@ -47,7 +47,7 @@ build() { sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool - MAKEFLAGS="$MAKEFLAGS -j2" make + make } package() { @@ -69,8 +69,6 @@ package() { } ip6tables() { - depends="iptables" - mkdir -p "$subpkgdir" cd "$subpkgdir" |