After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 397371 - configure script uses the == operator of test(1)
configure script uses the == operator of test(1)
Status: RESOLVED FIXED
Product: libxslt
Classification: Platform
Component: general
1.1.19
Other All
: Normal normal
: ---
Assigned To: Daniel Veillard
libxml QA maintainers
Depends on:
Blocks:
 
 
Reported: 2007-01-16 19:41 UTC by Roland Illig
Modified: 2007-01-17 13:23 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description Roland Illig 2007-01-16 19:41:38 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:
Comment 1 Daniel Veillard 2007-01-17 13:23:58 UTC
Okay makes sense, fix to configure.in being commited to SVN

  thanks,

Daniel