Skip to content

Commit

Permalink
fix: renamed print
Browse files Browse the repository at this point in the history
  • Loading branch information
BwL1289 committed Aug 30, 2024
1 parent 2a01fd8 commit b93502d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def build_extension(self, ext):
PY_MODULES = ['brotli']

USE_SYSTEM_BROTLI = bool_from_environ('USE_SYSTEM_BROTLI')
print(f"[EUGO] USE_SYSTEM_BROTLI={USE_SYSTEM_BROTLI}")
print(f"[BROTLI] USE_SYSTEM_BROTLI={USE_SYSTEM_BROTLI}")
if USE_SYSTEM_BROTLI:
brotli_extension = Extension(
'_brotli',
Expand All @@ -198,11 +198,11 @@ def build_extension(self, ext):
REQUIRED_BROTLI_SYSTEM_LIBRARIES = ["libbrotlicommon", "libbrotlienc", "libbrotlidec"]
pkgconfig_configure_extension(brotli_extension, " ".join(REQUIRED_BROTLI_SYSTEM_LIBRARIES))

print(f"[EUGO] {brotli_extension.include_dirs}")
print(f"[EUGO] {brotli_extension.library_dirs}")
print(f"[EUGO] {brotli_extension.libraries}")
print(f"[EUGO] {brotli_extension.extra_compile_args}")
print(f"[EUGO] {brotli_extension.extra_link_args}")
print(f"[BROTLI] {brotli_extension.include_dirs}")
print(f"[BROTLI] {brotli_extension.library_dirs}")
print(f"[BROTLI] {brotli_extension.libraries}")
print(f"[BROTLI] {brotli_extension.extra_compile_args}")
print(f"[BROTLI] {brotli_extension.extra_link_args}")

EXT_MODULES = [brotli_extension]
else:
Expand Down

0 comments on commit b93502d

Please sign in to comment.