summaryrefslogtreecommitdiffstats
path: root/Modules/threadmodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-09-05 21:31:04 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-09-05 21:31:04 (GMT)
commit884baa1e6b9ed8115e2e4cea26614626e7a616dd (patch)
tree18c773aeb10a77dcb6eef7380dc95917a7d33b13 /Modules/threadmodule.c
parent609ba81cdbd18c5af1220f242402dc4c7ac923a4 (diff)
downloadcpython-884baa1e6b9ed8115e2e4cea26614626e7a616dd.zip
cpython-884baa1e6b9ed8115e2e4cea26614626e7a616dd.tar.gz
cpython-884baa1e6b9ed8115e2e4cea26614626e7a616dd.tar.bz2
--with(out)-thread is deprecated according to configure --help
Diffstat (limited to 'Modules/threadmodule.c')
-rw-r--r--Modules/threadmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c
index 896d4fa..62fd76a 100644
--- a/Modules/threadmodule.c
+++ b/Modules/threadmodule.c
@@ -6,7 +6,7 @@
#ifndef WITH_THREAD
#error "Error! The rest of Python is not compiled with thread support."
-#error "Rerun configure, adding a --with-thread option."
+#error "Rerun configure, adding a --with-threads option."
#error "Then run `make clean' followed by `make'."
#endif