summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-06-14 01:54:10 -0400
committerBert Vermeulen <bert@biot.com>2014-06-15 10:49:02 +0200
commit3b776f38b9fe2903fd7a4af9d9ca9edd159cea0b (patch)
tree480e1b00bfdbb52199a7590f1ff10c06c0eea2b9
parent4f8e40458fe9c0da90ba4634d248d4edb9f4b5aa (diff)
downloadlibsigrokdecode-3b776f38b9fe2903fd7a4af9d9ca9edd159cea0b.tar.gz
libsigrokdecode-3b776f38b9fe2903fd7a4af9d9ca9edd159cea0b.zip
fix test operator
The == operator is not in POSIX.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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