From: Mike Frysinger Date: Sat, 14 Jun 2014 05:54:10 +0000 (-0400) Subject: fix test operator X-Git-Tag: libsigrokdecode-0.4.0~226 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=3b776f38b9fe2903fd7a4af9d9ca9edd159cea0b;p=libsigrokdecode.git fix test operator The == operator is not in POSIX. --- diff --git a/configure.ac b/configure.ac index 9527379..3f661ec 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,7 @@ AC_SUBST(MODNAME_PYTHON) # We also need to find the name of the python3 executable (for 'make install'). # Some OSes call this python3, some call it python3.2, etc. etc. AC_CHECK_PROGS([PYTHON3], [python3.4 python3.3 python3.2 python3]) -if test "x$PYTHON3" == "x"; then +if test "x$PYTHON3" = "x"; then AC_MSG_ERROR([cannot find python3 executable.]) fi