Revision: 2683
Author: [email protected]
Date: Thu Aug 13 07:03:12 2009
Log: Fix mac-nm script to support filenames w/spaces

Review URL: http://codereview.chromium.org/164476

http://code.google.com/p/v8/source/detail?r=2683

Modified:
  /branches/bleeding_edge/tools/mac-nm

=======================================
--- /branches/bleeding_edge/tools/mac-nm        Mon Jul 13 22:01:06 2009
+++ /branches/bleeding_edge/tools/mac-nm        Thu Aug 13 07:03:12 2009
@@ -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

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to