mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-01 04:35:31 +02:00
Missing brackets
This commit is contained in:
parent
177a15fe46
commit
ca33868c67
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
PKGCONFIG = find_executable('pkg-config')
|
||||
PKGCONFIG = os.environ.get('PKG_CONFIG', PKGCONFIG)
|
||||
if islinux or ishaiku and not PKGCONFIG:
|
||||
if (islinux or ishaiku) and not PKGCONFIG:
|
||||
raise SystemExit('Failed to find pkg-config on your system. You can use the environment variable PKG_CONFIG to point to the pkg-config executable')
|
||||
|
||||
def run_pkgconfig(name, envvar, default, flag, prefix):
|
||||
|
|
|
|||
Loading…
Reference in a new issue