diff options
author | Guido van Rossum <guido@python.org> | 2002-10-14 20:48:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-10-14 20:48:09 (GMT) |
commit | e0fea6c4edcb977d722ed30de4a76a83355e2617 (patch) | |
tree | 3b934b462c090b7c0977c8f786fa2c401d8d0215 | |
parent | 5357c6511dcac17e1c80dbdeaea6c1016f44f4e5 (diff) | |
download | cpython-e0fea6c4edcb977d722ed30de4a76a83355e2617.zip cpython-e0fea6c4edcb977d722ed30de4a76a83355e2617.tar.gz cpython-e0fea6c4edcb977d722ed30de4a76a83355e2617.tar.bz2 |
[SF bug 620364]
In build_extensions(), don't proceed if srcdir is None. Probably
somebody who tried this on Windows. :-)
-rw-r--r-- | setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -86,6 +86,9 @@ class PyBuildExt(build_ext): # Fix up the autodetected modules, prefixing all the source files # with Modules/ and adding Python's include directory to the path. (srcdir,) = sysconfig.get_config_vars('srcdir') + if not srcdir: + # Maybe running on Windows but not using CYGWIN? + raise ValueError("No source directory; cannot proceed.") # Figure out the location of the source code for extension modules moddir = os.path.join(os.getcwd(), srcdir, 'Modules') |