forked from pool/iptables
Jan Engelhardt
4eb6a28a22
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/iptables?expand=0&rev=16
32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
parent 7d91a2accc92d13bb32bf881831e9c9a8b4d7734 (v1.4.11-2-g7d91a2a)
|
|
commit 71e402bbb3db7b54571f0e44354fd37706ff90aa
|
|
Author: Jan Engelhardt <jengelh@medozas.de>
|
|
Date: Mon May 30 01:45:14 2011 +0200
|
|
|
|
build: fix installation of symlinks
|
|
|
|
Commit v1.4.11~20 forgot to change the symlink target names to the new
|
|
executable name.
|
|
|
|
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
|
|
---
|
|
Makefile.am | 6 +++---
|
|
1 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 13e144e..741729b 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -96,6 +96,6 @@ config.status: extensions/GNUmakefile.in \
|
|
install-exec-hook:
|
|
-if test -z "${DESTDIR}"; then /sbin/ldconfig; fi;
|
|
${INSTALL} -dm0755 "${DESTDIR}${bindir}";
|
|
- for i in ${v4_bin_links}; do ${LN_S} -f "${sbindir}/iptables-multi" "${DESTDIR}${bindir}/$$i"; done;
|
|
- for i in ${v4_sbin_links}; do ${LN_S} -f iptables-multi "${DESTDIR}${sbindir}/$$i"; done;
|
|
- for i in ${v6_sbin_links}; do ${LN_S} -f ip6tables-multi "${DESTDIR}${sbindir}/$$i"; done;
|
|
+ for i in ${v4_bin_links}; do ${LN_S} -f "${sbindir}/xtables-multi" "${DESTDIR}${bindir}/$$i"; done;
|
|
+ for i in ${v4_sbin_links}; do ${LN_S} -f xtables-multi "${DESTDIR}${sbindir}/$$i"; done;
|
|
+ for i in ${v6_sbin_links}; do ${LN_S} -f xtables-multi "${DESTDIR}${sbindir}/$$i"; done;
|
|
--
|
|
# Created with git-export-patch
|