GNOME Bugzilla – Bug 397371
configure script uses the == operator of test(1)
Last modified: 2007-01-17 13:23:58 UTC
Please describe the problem: http://www.opengroup.org/onlinepubs/000095399/utilities/test.html does not mention the == operator, and indeed there are many implementations that don't support it. To make the configure script more portable, the == should be replaced with =. - AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1") + AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" = "1") Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
Okay makes sense, fix to configure.in being commited to SVN thanks, Daniel