diff options
| author | Matthias Klose <doko@ubuntu.com> | 2006-12-03 17:16:41 (GMT) |
|---|---|---|
| committer | Matthias Klose <doko@ubuntu.com> | 2006-12-03 17:16:41 (GMT) |
| commit | d149d0c76a7fa8c90140342dad3e1c220c63c054 (patch) | |
| tree | 693aa70e238a85fcaa6d06cd3d818cef50b1d444 | |
| parent | a00bcac00382be7f99ef30e24ec029268efa0cbf (diff) | |
| download | cpython-d149d0c76a7fa8c90140342dad3e1c220c63c054.zip cpython-d149d0c76a7fa8c90140342dad3e1c220c63c054.tar.gz cpython-d149d0c76a7fa8c90140342dad3e1c220c63c054.tar.bz2 | |
- Fix build failure on kfreebsd and on the hurd.
| -rw-r--r-- | Lib/distutils/command/build_ext.py | 2 | ||||
| -rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 00f8a6b..2413829 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -186,7 +186,7 @@ class build_ext (Command): # for extensions under Cygwin and AtheOS Python's library directory must be # appended to library_dirs if sys.platform[:6] == 'cygwin' or sys.platform[:6] == 'atheos' or \ - (sys.platform.startswith('linux') and + ((sys.platform.startswith('linux') or sys.platform.startswith('gnu')) and sysconfig.get_config_var('Py_ENABLE_SHARED')): if string.find(sys.executable, sys.exec_prefix) != -1: # building third party extensions @@ -351,6 +351,8 @@ Build - Patch #1540470, for OpenBSD 4.0. +- Fix build failure on kfreebsd and on the hurd. + C API ----- |
