We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab10ba commit a0faee3Copy full SHA for a0faee3
.gitignore
@@ -242,3 +242,13 @@ libzim.*.dylib
242
zim*.dll
243
libicu*.dll
244
zim.lib
245
+
246
+# pkg-config file
247
+*.pc
248
249
+# downloaded archives
250
+*.tar.gz
251
+*.zip
252
253
+# zim files
254
+*.zim
setup.py
@@ -339,7 +339,7 @@ def cleanup(self):
339
# we downloaded libzim, so we must remove it
340
if self.download_libzim:
341
print("removing downloaded libraries")
342
- for fpath in self.dylib_file.parent.glob("*.[dylib|so|dll|lib]*"):
+ for fpath in self.dylib_file.parent.glob("*.[dylib|so|dll|lib|pc]*"):
343
print(">", fpath)
344
fpath.unlink(missing_ok=True)
345
if self.header_file.parent.exists():
0 commit comments