GNOME Bugzilla – Bug 373864
sanity_check is a bash script
Last modified: 2006-11-14 18:25:03 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).
Created attachment 76391 [details] [review] Trivial patch to replace == with =
2006-11-14 Behdad Esfahbod <behdad@gnome.org> * sanity_check: Replace bash-specific == with sh-understood =. Fixes bug #373864.