summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDane Springmeyer <dane@mapbox.com>2015-01-28 21:22:39 -0800
committerDane Springmeyer <dane@mapbox.com>2015-01-28 21:22:39 -0800
commitbeac81f849aaf226118be00d8b6cdcd0f4e8f38a (patch)
tree61507de71d128040bcb195b436b3a25ce8d9e85e /configure
parent4d4c534a69740873f554a9b6ef91cb7743eac4e4 (diff)
downloadqtlocation-mapboxgl-beac81f849aaf226118be00d8b6cdcd0f4e8f38a.tar.gz
ensure pkg-config is found since mason depends on it for now
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 268509ee26..14982c2117 100755
--- a/configure
+++ b/configure
@@ -57,6 +57,12 @@ PYTHON=`which python || abort 'Cannot find python'`
>&2 ${PYTHON} --version
>&2 echo -en "\033[0m";
+PKG_CONFIG=`which pkg-config || abort 'Cannot find pkg-config'`
+
+>&2 echo -en "\033[1m\033[32m* Using pkg-config "
+>&2 ${PKG_CONFIG} --version
+>&2 echo -en "\033[0m";
+
function quote_flags {
${PYTHON} -c "import sys, re; print filter(None, re.split('(?<!-framework)\s+', ' '.join(sys.argv[1:])))" "$@"
}