common-lisp.net
/
projects/cmucl/cmucl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d523020
)
Use /usr/bin/sed instead of whatever is in the path.
author
Raymond Toy
<toy.raymond@gmail.com>
Fri, 10 Aug 2012 06:44:26 +0000 (23:44 -0700)
committer
Raymond Toy
<toy.raymond@gmail.com>
Fri, 10 Aug 2012 06:44:26 +0000 (23:44 -0700)
src/lisp/solaris-nm
patch
|
blob
|
blame
|
history
diff --git
a/src/lisp/solaris-nm
b/src/lisp/solaris-nm
index
caa09d9
..
ba2a461
100755
(executable)
--- a/
src/lisp/solaris-nm
+++ b/
src/lisp/solaris-nm
@@
-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'