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 582057 - test ... == ... is not portable
test ... == ... is not portable
Status: RESOLVED FIXED
Product: pygoocanvas
Classification: Deprecated
Component: general
0.14.x
Other All
: Normal normal
: ---
Assigned To: Gian Mario Tagliaretti
Gian Mario Tagliaretti
Depends on:
Blocks:
 
 
Reported: 2009-05-10 11:29 UTC by OBATA Akio
Modified: 2009-06-09 22:11 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description OBATA Akio 2009-05-10 11:29:10 UTC
In configure.ac:

if test x$enable_docs == xyes; then

`==' for test is not portable, should be replaced with `='

if test x$enable_docs = xyes; then