Patch #1901742: Solaris /bin/sh doesn't like $()

svn-id: r30969
This commit is contained in:
Jordi Vilalta Prat 2008-02-26 15:17:13 +00:00
parent 2579136dd2
commit d4b9d7fe44

3
configure vendored
View file

@ -378,7 +378,8 @@ engine_disable() {
# Show the configure help line for an option
option_help() {
option=`echo "--$(echo $1 | sed 's/_/-/g') " | sed "s/\(.\{23\}\).*/\1/"`
tmpopt=`echo $1 | sed 's/_/-/g'`
option=`echo "--${tmpopt} " | sed "s/\(.\{23\}\).*/\1/"`
echo " ${option} ${2}"
}