build: Fix typo in Debian/Ubuntu dependencies script (#232)

The "!" parameter to if needs to be free-standing. As is the script always outputs this on Ubuntu 20.04:

./get_deps_debian.sh: 8: !which: not found
This commit is contained in:
DrivebyCoding 2021-09-21 21:33:34 +02:00 committed by GitHub
parent eb779c5986
commit 15a60930d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ echo "As of 2020-12, Debian stable does not include g++-10, needs debian testing
# Tested on 2020-12-09 with Docker image bitnami/minideb:unstable
# Install pkgconf (adds minimum dependencies) only if the equivalent pkf-config is not already installed.
if !which pkg-config
if ! which pkg-config
then
PKGCONF="pkgconf"
fi