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 622196 - Unportable test(1) construct in configure script
Unportable test(1) construct in configure script
Status: RESOLVED FIXED
Product: GIMP
Classification: Other
Component: General
2.6.8
Other All
: Normal normal
: 2.6
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2010-06-20 13:56 UTC by Thomas Klausner
Modified: 2010-06-20 16:38 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch fixing the problem. (318 bytes, patch)
2010-06-20 13:56 UTC, Thomas Klausner
none Details | Review

Description Thomas Klausner 2010-06-20 13:56:42 UTC
Created attachment 164144 [details] [review]
Patch fixing the problem.

The configure script contains the unportable bash(1) "==" comparison operator for test(1). It is not supported by most other shells or even test(1) from GNU 
coreutils. Please use "=" instead.
Comment 1 Sven Neumann 2010-06-20 16:38:16 UTC
Fix pushed to both trees. Thanks for the report.

commit 9275404452e233e38c6cc438beaccab92278631f
Author: Sven Neumann <sven@gimp.org>
Date:   Sun Jun 20 18:37:53 2010 +0200

    Bug 622196 - Unportable test(1) construct in configure script
    
    Use of '==' as comparison operator is a bashism.