Skip to content

Commit f574bd3

Browse files
Fix mac-nm script to support filenames w/spaces
Review URL: http://codereview.chromium.org/164476 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@2683 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
1 parent 3fedb0b commit f574bd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/mac-nm

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# needs to be parsed, which requires a lot of knowledge to be coded in.
1313

1414
if [ "`which c++filt`" == "" ]; then
15-
nm $@
15+
nm "$@"
1616
else
17-
nm $@ | c++filt -p -i
17+
nm "$@" | c++filt -p -i
1818
fi

0 commit comments

Comments
 (0)