mirror of https://github.com/GNOME/gimp.git
Bug 622196 - Unportable test(1) construct in configure script
Use of '==' as comparison operator is a bashism.
This commit is contained in:
parent
ba3d530c9b
commit
9275404452
|
@ -1303,7 +1303,7 @@ if test "x$with_print" != xno; then
|
||||||
enable_print="yes"
|
enable_print="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" == xyes)
|
AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" = xyes)
|
||||||
|
|
||||||
|
|
||||||
######################
|
######################
|
||||||
|
|
Loading…
Reference in New Issue