From: Martin v. Löwis Date: Mon, 7 Oct 2002 06:21:41 +0000 (+0000) Subject: Fix quoting for Solaris LDSHARED. Will backport to 2.2. X-Git-Tag: v2.3c1~3867 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa5afe1cedec429b5b367b7dc9e0d63574f96a62;p=thirdparty%2FPython%2Fcpython.git Fix quoting for Solaris LDSHARED. Will backport to 2.2. --- diff --git a/configure b/configure index e6c99dc74417..eccd4d68959a 100755 --- a/configure +++ b/configure @@ -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 \"*\"";; diff --git a/configure.in b/configure.in index 4ec1bed2706b..d752434ee6e6 100644 --- a/configure.in +++ b/configure.in @@ -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 \"*\"";;