mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
file is not a variable name
This commit is contained in:
parent
bf2df86807
commit
999b0a1e8c
8
setup.py
8
setup.py
|
@ -522,10 +522,10 @@ class pil_build_ext(build_ext):
|
|||
# core library
|
||||
|
||||
files = ["_imaging.c"]
|
||||
for file in _IMAGING:
|
||||
files.append(file + ".c")
|
||||
for file in _LIB_IMAGING:
|
||||
files.append(os.path.join("libImaging", file + ".c"))
|
||||
for src_file in _IMAGING:
|
||||
files.append(src_file + ".c")
|
||||
for src_file in _LIB_IMAGING:
|
||||
files.append(os.path.join("libImaging", src_file + ".c"))
|
||||
|
||||
libs = []
|
||||
defs = []
|
||||
|
|
Loading…
Reference in New Issue
Block a user