Skip to content

Commit 4c5345c

Browse files
committed
Remove add-imaging-libs option
1 parent fec83b5 commit 4c5345c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ def __iter__(self):
333333
("disable-platform-guessing", None, "Disable platform guessing on Linux"),
334334
("debug", None, "Debug logging"),
335335
]
336-
+ [("add-imaging-libs=", None, "Add libs to _imaging build")]
337336
)
338337

339338
@staticmethod
@@ -344,7 +343,6 @@ def initialize_options(self):
344343
self.disable_platform_guessing = self.check_configuration(
345344
"platform-guessing", "disable"
346345
)
347-
self.add_imaging_libs = ""
348346
build_ext.initialize_options(self)
349347
for x in self.feature:
350348
setattr(self, f"disable_{x}", self.check_configuration(x, "disable"))
@@ -821,7 +819,7 @@ def build_extensions(self):
821819
#
822820
# core library
823821

824-
libs = self.add_imaging_libs.split()
822+
libs = []
825823
defs = []
826824
if feature.tiff:
827825
libs.append(feature.tiff)

0 commit comments

Comments
 (0)