diff options
author | tv <tv@pkgsrc.org> | 1998-07-17 14:48:15 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-07-17 14:48:15 +0000 |
commit | 0948133fc8d2b4e2d727d934f0dfa37c16209dfd (patch) | |
tree | 5a6a4af8429b0322da2abc584a7d8defde3343dd /devel/libtool | |
parent | a1ecabcf36fec2dca9ba138e81114933c9f955d0 (diff) | |
download | pkgsrc-0948133fc8d2b4e2d727d934f0dfa37c16209dfd.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/libtool')
-rw-r--r-- | devel/libtool/patches/patch-ab | 32 |
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 |