]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix quoting for Solaris LDSHARED.
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 7 Oct 2002 06:22:21 +0000 (06:22 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 7 Oct 2002 06:22:21 +0000 (06:22 +0000)
configure
configure.in

index 124284e48eb8ce9c45d850473f711b49d9528133..85e4b98c6a42baedaa44b4356efca6b77b071669 100755 (executable)
--- 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 \"*\"";;
index 1e942481fc5c667362f6b1d8c2e4f1edf4a7fe35..e3c9d9b60bd5ebbda66e3aea89eb58943569ce04 100644 (file)
@@ -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 \"*\"";;