From: David Seifert Date: Tue, 6 Jul 2021 11:46:13 +0000 (+0200) Subject: Remove bashism X-Git-Tag: 2.48.0~10^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f964fbc975bb62cc98265d41a2d32f31d465a1e8;p=graphviz Remove bashism * `==` only works in bash, whereas a shell like dash is significantly faster for running the configure script. --- diff --git a/configure.ac b/configure.ac index 0bceb48a3..8f8bedc09 100644 --- a/configure.ac +++ b/configure.ac @@ -317,7 +317,7 @@ AC_C_INLINE dnl =========================================================================== dnl Set GCC compiler flags -if [test "${GCC}" == "yes"] +if [ test "${GCC}" = "yes" ] then # Enable common warnings flags CFLAGS="${CFLAGS} -Wall"