diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 12:30:09 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 12:30:47 +0000 |
commit | c538e92aa1d0b1fe5f11373b52be4858aee0cd73 (patch) | |
tree | b7b160ed89b7f2b8b489594de41e7124061d0613 /sofort | |
parent | 6e7a364428eaf7919b80da7b3ebdfa58d8fb0523 (diff) | |
download | ptycon-c538e92aa1d0b1fe5f11373b52be4858aee0cd73.tar.bz2 ptycon-c538e92aa1d0b1fe5f11373b52be4858aee0cd73.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.sh | 3 |
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" |