diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-26 21:48:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-26 21:48:26 +0000 |
commit | 47a16a0528f34266ae6f3ee4e6423c6f64d7b60d (patch) | |
tree | 0512465ebf9af35519cb0aecaa0ccf3ad4494ae2 /net-firewall/iptables/files | |
parent | Use python_{en,dis}able_pyc. (diff) | |
download | historical-47a16a0528f34266ae6f3ee4e6423c6f64d7b60d.tar.gz historical-47a16a0528f34266ae6f3ee4e6423c6f64d7b60d.tar.bz2 historical-47a16a0528f34266ae6f3ee4e6423c6f64d7b60d.zip |
Do not run ldconfig when installing.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26.2 x86_64
Diffstat (limited to 'net-firewall/iptables/files')
-rw-r--r-- | net-firewall/iptables/files/iptables-1.4.2-no-ldconfig.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net-firewall/iptables/files/iptables-1.4.2-no-ldconfig.patch b/net-firewall/iptables/files/iptables-1.4.2-no-ldconfig.patch new file mode 100644 index 000000000000..06a3be51b90d --- /dev/null +++ b/net-firewall/iptables/files/iptables-1.4.2-no-ldconfig.patch @@ -0,0 +1,15 @@ +avoid pointless overhead for DESTDIR builds + +http://bugzilla.netfilter.org/show_bug.cgi?id=560 + +--- Makefile.in ++++ Makefile.in +@@ -1530,7 +1530,7 @@ + # ldconfig may fail when we are not root (as is the case in build systems) + # so add appropriate protection that it does not let `make` fail. + install-exec-hook: +- -/sbin/ldconfig || :; ++ -[ -z "$(DESTDIR)" ] && /sbin/ldconfig + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |