src/makealias | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 9fe7c986c64d8cfb7f85a300b6f0d470ce66b18a Author: Akira TAGOH <akira at tagoh.org> Date: Thu Mar 29 15:43:11 2012 +0900 Bug 48020 - Fix for src/makealias on Solaris 10 Use the command substitution `command` instead of $(command) for Solaris 10. diff --git a/src/makealias b/src/makealias index fca94d4..e2f31c6 100755 --- a/src/makealias +++ b/src/makealias @@ -17,7 +17,7 @@ while read name; do hattr=''__attribute((visibility("hidden")))'' echo "extern __typeof ($name) $alias $hattr;" >> $HEAD echo "#define $name $alias" >> $HEAD - ifdef=$(grep -l ''^''$name''[ (]'' "$SRCDIR"/*.c | sed -n 1p | sed -e ''s/^.*\/\([^.]*\)\.c/__\1__/'') + ifdef=`grep -l ''^''$name''[ (]'' "$SRCDIR"/*.c | sed -n 1p | sed -e ''s/^.*\/\([^.]*\)\.c/__\1__/''` if [ -z "$ifdef" ] ; then echo "error: could not locate $name in src/*.c" 1>&2 exit 1