summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2012-01-22 12:28:08 +0100
committerThomas Klausner <wiz@NetBSD.org>2012-01-22 12:28:08 +0100
commit1684f1cb1a7ca155e613d3da4e2c168e9618e62a (patch)
tree5ff02204d4de0ced05c09554dcfb0cb5b7be92e5 /configure.in
parenta865eee6e74b3de779f282bb276492239fed2abb (diff)
Use more portable `=' comparison operator instead of `=='.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 3be6798e9a9d..84beec313327 100644
--- a/configure.in
+++ b/configure.in
@@ -9696,7 +9696,7 @@ dnl this should be unified into using only one version for both
AC_MSG_CHECKING([whether to use the system libjpeg])
-if test "$SYSTEM_JPEG" == "YES"; then
+if test "$SYSTEM_JPEG" = "YES"; then
SYSTEM_LIBJPEG=YES
AC_MSG_RESULT([yes])
else