From: Greg T. <gd...@le...> - 2020-03-18 16:54:36
|
In 5.3, we patch configure to remove two instances of 'test ==': --- configure.orig 2019-08-25 15:14:21.000000000 +0000 +++ configure @@ -12747,7 +12747,7 @@ if test "${with_cups+set}" = set; then : withval=$with_cups; case "${withval}" in yes) - if test "$FOUND_CUPS_CONFIG" == "yes" ; then + if test "$FOUND_CUPS_CONFIG" = "yes" ; then BUILD_CUPS="yes" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -12776,7 +12776,7 @@ else fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${BUILD_CUPS}" >&5 $as_echo "${BUILD_CUPS}" >&6; } ; - if test "$FOUND_CUPS_CONFIG" == "yes" ; then + if test "$FOUND_CUPS_CONFIG" = "yes" ; then cups_prefix="${prefix}" BUILD_CUPS="yes" else |