From 15a60930d2b65fe09f6527e498b2c3ce088d9466 Mon Sep 17 00:00:00 2001 From: DrivebyCoding <71575966+DrivebyCoding@users.noreply.github.com> Date: Tue, 21 Sep 2021 21:33:34 +0200 Subject: [PATCH] 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 --- dist/get_deps_debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/get_deps_debian.sh b/dist/get_deps_debian.sh index 5e5e4ca6f..6c1c504fd 100755 --- a/dist/get_deps_debian.sh +++ b/dist/get_deps_debian.sh @@ -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