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:
parent
becbdaebe3
commit
9fe7c986c6
|
@ -17,7 +17,7 @@ while read name; do
|
||||||
hattr='__attribute((visibility("hidden")))'
|
hattr='__attribute((visibility("hidden")))'
|
||||||
echo "extern __typeof ($name) $alias $hattr;" >> $HEAD
|
echo "extern __typeof ($name) $alias $hattr;" >> $HEAD
|
||||||
echo "#define $name $alias" >> $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
|
if [ -z "$ifdef" ] ; then
|
||||||
echo "error: could not locate $name in src/*.c" 1>&2
|
echo "error: could not locate $name in src/*.c" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue