summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-12 12:30:09 +0000
committermidipix <writeonce@midipix.org>2021-06-12 12:30:47 +0000
commitb26c7f703d6e846a04c1fcbd9af2d578db19b946 (patch)
treefdf508400c6e16330c690d3034f2a7a437dd5b11 /sofort
parent5f1bda2c8ce587e70dc4d328c482eedd6079a5fc (diff)
downloadsbmake-b26c7f703d6e846a04c1fcbd9af2d578db19b946.tar.bz2
sbmake-b26c7f703d6e846a04c1fcbd9af2d578db19b946.tar.xz
build system: ccenv_set_primary_tools(): try pkg-config as a pkgconf fallback.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index d98e87e..99a98ef 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -208,6 +208,9 @@ ccenv_set_primary_tools()
ccenv_candidates="$ccenv_candidates gcc-$__tool"
ccenv_candidates="$ccenv_candidates llvm-$__tool"
+ elif [ "$__tool" = 'pkgconf' ]; then
+ ccenv_candidates="$__tool pkg-config"
+
else
ccenv_candidates="$__tool"
ccenv_candidates="$ccenv_candidates gcc-$__tool"