aboutsummaryrefslogtreecommitdiff
path: root/linux/mips
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-07-29 17:04:27 -0700
committerElliott Hughes <enh@google.com>2015-07-29 17:04:27 -0700
commitb27465d7793aab3a672adf353eb55b3972b3f45b (patch)
tree48f5794bc7640cc6b27eaae2d164e52d09fc9299 /linux/mips
parent791b71798645803556a56039e73239e4052fa58c (diff)
parent1d246ce3d474829c505794a52a63435e7c9a2501 (diff)
downloadstrace-b27465d7793aab3a672adf353eb55b3972b3f45b.tar.gz
Merge remote-tracking branch 'strace/master' into HEAD
Diffstat (limited to 'linux/mips')
-rwxr-xr-xlinux/mips/genstub.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/mips/genstub.sh b/linux/mips/genstub.sh
index ffcbfdf5..5ebb1d44 100755
--- a/linux/mips/genstub.sh
+++ b/linux/mips/genstub.sh
@@ -6,5 +6,5 @@ dstdir="$1"; shift
for n in n32 n64 o32; do
in="$srcdir/syscallent-$n.h"
out="$dstdir/syscallent-$n-stub.h"
- sed -n '/^#if/,/^#else/ {s/^\([^{]*{[^,]*,[^,]*,[[:space:]]*\)[^,[:space:]]\+,[[:space:]]*"\([^"]\+".*\)/\1printargs, "'$n'_\2/; s/^\[.*/&/p}' < "$in" > "$out"
+ sed -n '/^#if/,/^#else/ {s/^\([^{]*{[^,]*,[^,]*,[[:space:]]*\)[^,[:space:]]\+,[[:space:]]*"\([^"]\+".*\)/\1SEN(printargs), "'$n'_\2/; s/^\[.*/&/p}' < "$in" > "$out"
done