From: Martin v. Löwis Date: Mon, 7 Oct 2002 06:22:21 +0000 (+0000) Subject: Fix quoting for Solaris LDSHARED. X-Git-Tag: v2.2.2b1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc1db301e7ea9d5bb0c44a13affbd116490be9dc;p=thirdparty%2FPython%2Fcpython.git Fix quoting for Solaris LDSHARED. --- diff --git a/configure b/configure index 124284e48eb8..85e4b98c6a42 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.288.6.12 +# From configure.in Revision: 1.288.6.13 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -3186,7 +3186,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 1e942481fc5c..e3c9d9b60bd5 100644 --- a/configure.in +++ b/configure.in @@ -800,7 +800,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 \"*\"";;