diff options
author | Nima Talebi <nima@autonomy.net.au> | 2009-08-03 20:16:22 +1000 |
---|---|---|
committer | Nima Talebi <nima@autonomy.net.au> | 2009-08-03 20:16:22 +1000 |
commit | 392a9976b14d558d4b2f331b5a44ee97912fc5e3 (patch) | |
tree | 97c515fd7c030df521c9ee6cd204f150692bbf3c /src/setup.py | |
parent | f229e49d1f0b849d85d2647bd57d86d1d2de48e6 (diff) | |
download | python-dmidecode-392a9976b14d558d4b2f331b5a44ee97912fc5e3.tar.gz python-dmidecode-392a9976b14d558d4b2f331b5a44ee97912fc5e3.tar.xz python-dmidecode-392a9976b14d558d4b2f331b5a44ee97912fc5e3.zip |
Moved a OS-specific library settings out to commonv3.10.6-rc1
The libxml2 path is now handled by `setup_common.py', so the actual
setup files are clean from any OS-specific (Debian/RedHat) hacks.
Diffstat (limited to 'src/setup.py')
-rw-r--r-- | src/setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/setup.py b/src/setup.py index 96b6133..d33db64 100644 --- a/src/setup.py +++ b/src/setup.py @@ -27,15 +27,13 @@ # from distutils.core import setup, Extension -from distutils.sysconfig import get_python_lib from setup_common import * # # Some default values # incdir = [] -#. XXX: Debian Workaound: libdir = [get_python_lib(1), "/usr/lib/pymodules/python%d.%d"%sys.version_info[0:2]] -libdir = [get_python_lib(1)] +libdir = [] libs = [] # Get libxml2 info |