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 373864 - sanity_check is a bash script
sanity_check is a bash script
Status: RESOLVED FIXED
Product: glib
Classification: Platform
Component: general
unspecified
Other All
: Normal trivial
: ---
Assigned To: gtkdev
gtkdev
Depends on:
Blocks:
 
 
Reported: 2006-11-11 14:44 UTC by Marco Barisione
Modified: 2006-11-14 18:25 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Trivial patch to replace == with = (886 bytes, patch)
2006-11-11 14:45 UTC, Marco Barisione
none Details | Review

Description Marco Barisione 2006-11-11 14:44:07 UTC
sanity_check begins with "#!/bin/sh" but it uses "==" in the tests. This syntax is not supported by some sh shells like dash (which is the shell pointed by /bin/sh on Ubuntu).
Comment 1 Marco Barisione 2006-11-11 14:45:12 UTC
Created attachment 76391 [details] [review]
Trivial patch to replace == with =
Comment 2 Behdad Esfahbod 2006-11-14 18:25:03 UTC
2006-11-14  Behdad Esfahbod  <behdad@gnome.org>

        * sanity_check: Replace bash-specific == with sh-understood =.
        Fixes bug #373864.