diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-11-02 16:58:05 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-11-02 16:58:05 (GMT) |
commit | a978ab0d8c91b5f5bf8222dc8c7eada7430ee2e8 (patch) | |
tree | 255e5f5157800e4c040f11ecbbd82203c9b6484c /configure.in | |
parent | 1a7a894d905f6d2239e288178bf769c5e8e8acfc (diff) | |
download | cpython-a978ab0d8c91b5f5bf8222dc8c7eada7430ee2e8.zip cpython-a978ab0d8c91b5f5bf8222dc8c7eada7430ee2e8.tar.gz cpython-a978ab0d8c91b5f5bf8222dc8c7eada7430ee2e8.tar.bz2 |
Need to quote test for posix_threads on HPUX11
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 519bbd7..e24f73c 100644 --- a/configure.in +++ b/configure.in @@ -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" |