summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortv <tv>1998-07-17 14:48:15 +0000
committertv <tv>1998-07-17 14:48:15 +0000
commit1d77bc146148df33ee1fb56cf365362c7f7d54a2 (patch)
tree5a6a4af8429b0322da2abc584a7d8defde3343dd /devel
parent661eb5950b722e18d903f6d01fb8e60b3cefd0bb (diff)
downloadpkgsrc-1d77bc146148df33ee1fb56cf365362c7f7d54a2.tar.gz
Eliminate ".la file is not installed" warnings - our linker doesn't
require relinking of .so-linked objects, so do not worry about finalization.
Diffstat (limited to 'devel')
-rw-r--r--devel/libtool/patches/patch-ab32
1 files changed, 30 insertions, 2 deletions
diff --git a/devel/libtool/patches/patch-ab b/devel/libtool/patches/patch-ab
index 0c3817d6482..01395ecbc12 100644
--- a/devel/libtool/patches/patch-ab
+++ b/devel/libtool/patches/patch-ab
@@ -1,5 +1,5 @@
---- ltmain.sh.orig Thu Jul 16 09:15:18 1998
-+++ ltmain.sh Thu Jul 16 09:15:44 1998
+--- ltmain.sh.orig Fri Mar 20 03:00:29 1998
++++ ltmain.sh Fri Jul 17 10:41:15 1998
@@ -1841,11 +1841,6 @@
IFS="$save_ifs"
fi
@@ -12,3 +12,31 @@
# Maybe install the static library, too.
test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
;;
+@@ -1912,26 +1907,7 @@
+ exit 1
+ fi
+
+- finalize=yes
+- for lib in $link_against_libtool_libs; do
+- # Check to see that each library is installed.
+- libdir=
+- if test -f "$lib"; then
+- # If there is no directory component, then add one.
+- case "$lib" in
+- */* | *\\*) . $lib ;;
+- *) . ./$lib ;;
+- esac
+- fi
+- libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
+- if test -z "$libdir"; then
+- $echo "$modename: warning: \`$lib' contains no -rpath information" 1>&2
+- elif test -f "$libfile"; then :
+- else
+- $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
+- finalize=no
+- fi
+- done
++ finalize=no
+
+ if test "$hardcode_action" = relink; then
+ if test "$finalize" = yes; then