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 578195 - autogen needs to use bash on Solaris.
autogen needs to use bash on Solaris.
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: general
unspecified
Other opensolaris
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2009-04-07 05:53 UTC by Brian Cameron
Modified: 2009-04-07 13:39 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Brian Cameron 2009-04-07 05:53:57 UTC
The autogen script doesn't work with Solaris bourne shell.  It generates this
error:

./autogen.sh: syntax error at line 3: `(' unexpected

Simply changing "#!/bin/sh" at the top of the file to "#!/bin/bash" fixes this
problem.  Can this change go upstream?
Comment 1 Dan Winship 2009-04-07 13:39:37 UTC
there's no reason for the script to be using bash's $() syntax rather than plain-old backticks, so I fixed it that way instead.