mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-24 08:14:10 +03:00
Replace distutils.sysconfig.get_config_var("prefix") with os.path.normpath(sys.prefix)
This commit is contained in:
parent
b243a6113e
commit
307239b234
4
setup.py
4
setup.py
|
@ -14,7 +14,7 @@ import struct
|
|||
import subprocess
|
||||
import sys
|
||||
import warnings
|
||||
from distutils import ccompiler, sysconfig
|
||||
from distutils import ccompiler
|
||||
from distutils.command.build_ext import build_ext
|
||||
|
||||
from setuptools import Extension, setup
|
||||
|
@ -418,7 +418,7 @@ class pil_build_ext(build_ext):
|
|||
for d in os.environ[k].split(os.path.pathsep):
|
||||
_add_directory(library_dirs, d)
|
||||
|
||||
prefix = sysconfig.get_config_var("prefix")
|
||||
prefix = os.path.normpath(sys.prefix)
|
||||
if prefix:
|
||||
_add_directory(library_dirs, os.path.join(prefix, "lib"))
|
||||
_add_directory(include_dirs, os.path.join(prefix, "include"))
|
||||
|
|
Loading…
Reference in New Issue
Block a user