diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-05 21:31:04 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-05 21:31:04 (GMT) |
commit | 884baa1e6b9ed8115e2e4cea26614626e7a616dd (patch) | |
tree | 18c773aeb10a77dcb6eef7380dc95917a7d33b13 /Modules/threadmodule.c | |
parent | 609ba81cdbd18c5af1220f242402dc4c7ac923a4 (diff) | |
download | cpython-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.c | 2 |
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 |