Commit 83fa4a8a authored by Martin v. Löwis's avatar Martin v. Löwis

Fix quoting for Solaris LDSHARED. Will backport to 2.2.

parent 0061afba
#! /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 \"*\"";;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment