GNOME Bugzilla – Bug 578195
autogen needs to use bash on Solaris.
Last modified: 2009-04-07 13:39:37 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?
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.