From: Mark Wooding Date: Tue, 1 Oct 2019 21:57:13 +0000 (+0100) Subject: mdwsetup.py (pkg_config): Change the token shown in error reports. X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/commitdiff_plain/9429175415841de9e19e0caf04ba4bed4c3a4989 mdwsetup.py (pkg_config): Change the token shown in error reports. --- diff --git a/mdwsetup.py b/mdwsetup.py index 45772fb..322e194 100644 --- a/mdwsetup.py +++ b/mdwsetup.py @@ -106,12 +106,12 @@ def pkg_config(pkg, version): for word in progoutput(['pkg-config', '--cflags', spec]).split(): if word.startswith('-I'): INCLUDEDIRS.append(word[2:]) - else: weird('--cflags', word) + else: weird('CFLAGS', word) for word in progoutput(['pkg-config', '--libs', spec]).split(): if word.startswith('-L'): LIBDIRS.append(word[2:]) elif word.startswith('-l'): LIBS.append(word[2:]) - else: weird('--libs', word) + else: weird('LIBS', word) ###-------------------------------------------------------------------------- ### Substituting variables in files.