Bug 48020 - Fix for src/makealias on Solaris 10

Use the command substitution `command` instead of $(command) for
Solaris 10.
This commit is contained in:
Akira TAGOH 2012-03-29 15:43:11 +09:00
parent becbdaebe3
commit 9fe7c986c6
1 changed files with 1 additions and 1 deletions

View File

@ -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