Bug 622196 - Unportable test(1) construct in configure script

Use of '==' as comparison operator is a bashism.
This commit is contained in:
Sven Neumann 2010-06-20 18:37:53 +02:00
parent ba3d530c9b
commit 9275404452
1 changed files with 1 additions and 1 deletions

View File

@ -1303,7 +1303,7 @@ if test "x$with_print" != xno; then
enable_print="yes"
fi
AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" == xyes)
AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" = xyes)
######################