From a411152d3f0600ab1ee99e4611170dc7c7c4d1a6 Mon Sep 17 00:00:00 2001 From: Lee Howard Date: Sun, 14 Jun 2015 21:51:17 +0000 Subject: [PATCH] From Marcos H. Woehrmann on Bugzilla Bug #2405. This corrects the shell equality operator. --- ChangeLog | 3 +++ configure | 2 +- configure.ac | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 95260ea8..56cb9349 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-06-14 Lee Howard + * configure, configure.ac: contribution from Marcos H. Woehrmann + on Bugzilla Bug #2405. Correct shell equality operator. + * tools/tiffgt.c (raster_draw): contribution from Jay Berkenbilt on Bugzilla Bug #2401. Appropriately call glFlush(). diff --git a/configure b/configure index f8611630..3f63cd86 100755 --- a/configure +++ b/configure @@ -18738,7 +18738,7 @@ if test "${with_jpeg12_lib+set}" = set; then : fi -if test "x$enable_jpeg12" == "xyes" ; then +if test "x$enable_jpeg12" = "xyes" ; then if test "x$with_jpeg12_lib" != "x" ; then LIBS="$with_jpeg12_lib $LIBS" diff --git a/configure.ac b/configure.ac index d5e684c0..7c6459ab 100644 --- a/configure.ac +++ b/configure.ac @@ -777,7 +777,7 @@ AC_ARG_WITH(jpeg12-lib, AS_HELP_STRING([--with-jpeg12-lib=LIBRARY], [path to libjpeg 12bit library]),,) -if test "x$enable_jpeg12" == "xyes" ; then +if test "x$enable_jpeg12" = "xyes" ; then if test "x$with_jpeg12_lib" != "x" ; then LIBS="$with_jpeg12_lib $LIBS"