[Python-checkins] python/dist/src configure,1.279.6.13,1.279.6.14 configure.in,1.288.6.13,1.288.6.14

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 06 Oct 2002 23:22:24 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv25339

Modified Files:
      Tag: release22-maint
	configure configure.in 
Log Message:
Fix quoting for Solaris LDSHARED.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.279.6.13
retrieving revision 1.279.6.14
diff -C2 -d -r1.279.6.13 -r1.279.6.14
*** configure	4 Oct 2002 10:16:24 -0000	1.279.6.13
--- configure	7 Oct 2002 06:22:19 -0000	1.279.6.14
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.288.6.12 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.288.6.13 
  
  # Guess values for system-dependent variables and create Makefiles.
***************
*** 3187,3191 ****
  		if test "$GCC" = "yes"
  		then LDSHARED='$(CC) -shared'
! 		else LDSHARED="$(CC) -G";
  		fi ;;
  	hp*|HP*) LDSHARED="ld -b";;
--- 3187,3191 ----
  		if test "$GCC" = "yes"
  		then LDSHARED='$(CC) -shared'
! 		else LDSHARED='$(CC) -G';
  		fi ;;
  	hp*|HP*) LDSHARED="ld -b";;

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.288.6.13
retrieving revision 1.288.6.14
diff -C2 -d -r1.288.6.13 -r1.288.6.14
*** configure.in	4 Oct 2002 10:16:27 -0000	1.288.6.13
--- configure.in	7 Oct 2002 06:22:21 -0000	1.288.6.14
***************
*** 801,805 ****
  		if test "$GCC" = "yes"
  		then LDSHARED='$(CC) -shared'
! 		else LDSHARED="$(CC) -G";
  		fi ;;
  	hp*|HP*) LDSHARED="ld -b";;
--- 801,805 ----
  		if test "$GCC" = "yes"
  		then LDSHARED='$(CC) -shared'
! 		else LDSHARED='$(CC) -G';
  		fi ;;
  	hp*|HP*) LDSHARED="ld -b";;