Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Unified Diff: tools/mac-nm

Issue 164476: Fix mac-nm script to support filenames w/spaces (Closed)
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mac-nm
diff --git a/tools/mac-nm b/tools/mac-nm
index 9c181779780bef5454cd06e4d4ee74dbfd20005d..07efb07bae8eb5cd276340f8265e7c3a87348d0e 100755
--- a/tools/mac-nm
+++ b/tools/mac-nm
@@ -12,7 +12,7 @@
# needs to be parsed, which requires a lot of knowledge to be coded in.
if [ "`which c++filt`" == "" ]; then
- nm $@
+ nm "$@"
else
- nm $@ | c++filt -p -i
+ nm "$@" | c++filt -p -i
fi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698