]> granicus.if.org Git - python/commitdiff
Need to quote test for posix_threads on HPUX11
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 2 Nov 2002 16:58:05 +0000 (16:58 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 2 Nov 2002 16:58:05 +0000 (16:58 +0000)
configure
configure.in

index 87f3dc343898c52a49e29dbe8b6c89cbea0cc016..9f15882eb55405bff22c1535d937269e3a4a5e74 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.360 .
+# From configure.in Revision: 1.361 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53 for python 2.3.
 #
@@ -11214,7 +11214,7 @@ _ACEOF
 fi
 
 
-    if test $posix_threads != "yes"; then
+    if test "$posix_threads" != "yes"; then
       echo "$as_me:$LINENO: checking for thr_create in -lthread" >&5
 echo $ECHO_N "checking for thr_create in -lthread... $ECHO_C" >&6
 if test "${ac_cv_lib_thread_thr_create+set}" = set; then
index 519bbd72f0372d6282e1f14966777709705ca75b..e24f73cb8e843bde0cb0d10ac1f9ac07fc42c0cd 100644 (file)
@@ -1360,7 +1360,7 @@ pthread_create (NULL, NULL, start_routine, NULL)], [
     THREADOBJ="Python/thread.o"
     USE_THREAD_MODULE=""])
 
-    if test $posix_threads != "yes"; then     
+    if test "$posix_threads" != "yes"; then     
       AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
       LIBS="$LIBS -lthread"
       THREADOBJ="Python/thread.o"