blob: eaa6b1519078e1bc79b612d2c19093d03e17cbde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- ltmain.sh.orig Sat Oct 12 22:28:58 2002
+++ ltmain.sh Sat Oct 12 22:30:31 2002
@@ -1058,6 +1058,9 @@
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
+ *-*-freebsd*)
+ # FreeBSD doesn't need this...
+ ;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
@@ -4258,10 +4261,12 @@
fi
# Install the pseudo-library for information purposes.
+ if /usr/bin/false; then
name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
instname="$dir/$name"i
$show "$install_prog $instname $destdir/$name"
$run eval "$install_prog $instname $destdir/$name" || exit $?
+ fi
# Maybe install the static library, too.
test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
|