Use /usr/bin/sed instead of whatever is in the path.
authorRaymond Toy <toy.raymond@gmail.com>
Fri, 10 Aug 2012 06:44:26 +0000 (23:44 -0700)
committerRaymond Toy <toy.raymond@gmail.com>
Fri, 10 Aug 2012 06:44:26 +0000 (23:44 -0700)
src/lisp/solaris-nm

index caa09d9..ba2a461 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh
 # Removing 0x prefix
 # remove local symbols ([a-z] in type field).
-/usr/ccs/bin/nm -pxh "$@" | sed -e 's/^0x//' -e '/ [a-z] /d'
+/usr/ccs/bin/nm -pxh "$@" | /usr/bin/sed -e 's/^0x//' -e '/ [a-z] /d'