Fix quoting for Solaris LDSHARED. Will backport to 2.2.
This commit is contained in:
parent
bb20bb6bdb
commit
aa5afe1ced
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 1.351 .
|
||||
# From configure.in Revision: 1.352 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.53.
|
||||
#
|
||||
|
@ -8917,7 +8917,7 @@ then
|
|||
SunOS/5*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
else LDSHARED="$(CC) -G";
|
||||
else LDSHARED='$(CC) -G';
|
||||
fi ;;
|
||||
hp*|HP*) LDSHARED="ld -b";;
|
||||
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
|
||||
|
|
|
@ -928,7 +928,7 @@ then
|
|||
SunOS/5*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
else LDSHARED="$(CC) -G";
|
||||
else LDSHARED='$(CC) -G';
|
||||
fi ;;
|
||||
hp*|HP*) LDSHARED="ld -b";;
|
||||
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
|
||||
|
|
Loading…
Reference in New Issue