diff options
author | Cem Keylan <cem@ckyln.com> | 2022-03-01 01:11:49 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-03-01 01:12:13 +0100 |
commit | 0712fe73b026d73202536f97273d0aeefc7fd38f (patch) | |
tree | 6e8acc8449c60d23a653e294bf1d8d7cfd7386a4 /extra/iptables/build | |
parent | 74c70b4f29dccf4bbfb7c7a13933f55ad1f06a84 (diff) | |
download | repository-0712fe73b026d73202536f97273d0aeefc7fd38f.tar.gz |
iptables: fix package
Diffstat (limited to 'extra/iptables/build')
-rwxr-xr-x | extra/iptables/build | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/extra/iptables/build b/extra/iptables/build index 68ed828e..33e64b1a 100755 --- a/extra/iptables/build +++ b/extra/iptables/build @@ -1,11 +1,15 @@ #!/bin/sh -e +export LDFLAGS="$LDFLAGS -static" + ./configure \ --prefix=/usr \ - --sbindir=/usr/sbin \ + --sbindir=/usr/bin \ + --disable-shared \ + --enable-static \ --enable-libipq \ - --with-xtlibdir=/lib/xtables \ + --with-xtlibdir=/usr/lib/xtables \ --disable-nftables -make +make LDFLAGS="$LDFLAGS -all-static" make DESTDIR="$1" install |