aboutsummaryrefslogtreecommitdiffstats
path: root/fix-libtool-ltmain-from-overlinking
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2011-02-05 19:36:23 +0000
committerThomas Backlund <tmb@mageia.org>2011-02-05 19:36:23 +0000
commitacffc72f16c13a81f622f9353a5da40a35ebb5ee (patch)
tree78ba5ee52ec2b72caca4df8846ac6d31a533e4c0 /fix-libtool-ltmain-from-overlinking
parent9f5ce6a5be6bc9679ad32dd2a80e3a3eaada3cfd (diff)
downloadrpm-setup-acffc72f16c13a81f622f9353a5da40a35ebb5ee.tar
rpm-setup-acffc72f16c13a81f622f9353a5da40a35ebb5ee.tar.gz
rpm-setup-acffc72f16c13a81f622f9353a5da40a35ebb5ee.tar.bz2
rpm-setup-acffc72f16c13a81f622f9353a5da40a35ebb5ee.tar.xz
rpm-setup-acffc72f16c13a81f622f9353a5da40a35ebb5ee.zip
merge under/overlinking scripts from rpm-manbo-setup
Diffstat (limited to 'fix-libtool-ltmain-from-overlinking')
-rw-r--r--fix-libtool-ltmain-from-overlinking14
1 files changed, 14 insertions, 0 deletions
diff --git a/fix-libtool-ltmain-from-overlinking b/fix-libtool-ltmain-from-overlinking
new file mode 100644
index 0000000..b6b97e3
--- /dev/null
+++ b/fix-libtool-ltmain-from-overlinking
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+if [ -e ltmain.sh ]; then
+ echo "Fixing libtool's ltmain.sh to prevent overlinking (cf http://wiki.mandriva.com/en/Overlinking)"
+
+ # a similar patch has been applied in ltmain.sh in libtool package
+ # but this works even if autoreconf is not called
+
+ mv ltmain.sh ltmain.sh.orig
+ echo link_all_deplibs=no > ltmain.sh
+ cat ltmain.sh.orig >> ltmain.sh
+
+ sed -i -s 's/link) libs="$deplibs %DEPLIBS% $dependency_libs"/link) libs="$deplibs %DEPLIBS%"/' ltmain.sh
+fi