diff options
Diffstat (limited to 'buildtools/scripts')
-rwxr-xr-x | buildtools/scripts/abi_gen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh index 7b4cb12713..d563fb8533 100755 --- a/buildtools/scripts/abi_gen.sh +++ b/buildtools/scripts/abi_gen.sh @@ -10,11 +10,11 @@ cat <<EOF set height 0 set width 0 EOF -nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do +nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do echo "echo $s: " echo p $s done ) > $GDBSCRIPT -gdb -batch -x $GDBSCRIPT $SHAREDLIB < /dev/null +gdb -batch -x $GDBSCRIPT "$SHAREDLIB" < /dev/null rm -f $GDBSCRIPT |