diff options
author | ayin <ayin> | 2007-11-15 14:58:49 +0000 |
---|---|---|
committer | ayin <ayin> | 2007-11-15 14:58:49 +0000 |
commit | c09e66b483b6b74b786f2d3dab809052eb630954 (patch) | |
tree | f5b57204468cfe18d337c66069e565c5bdd51c03 /update_ev_wrap | |
parent | 485804e1eaa0580124a1c94123822912811eaf88 (diff) |
Fix typo and simplify.
Diffstat (limited to 'update_ev_wrap')
-rwxr-xr-x | update_ev_wrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update_ev_wrap b/update_ev_wrap index 32ab625..30ebb4f 100755 --- a/update_ev_wrap +++ b/update_ev_wrap @@ -4,7 +4,7 @@ echo '#define VAR(name,decl) define name ((loop)->name)' echo '#define EV_GENWRAP 1' cat ev_vars.h -) | cc -E -o - - | sed -e 's/define/#define/' | grep '#define' | ( - echo "/* DO NOT EDIT, automaticlaly generated by update_ev_wrap */" +) | cc -E -o - - | sed -n -e 's/define/#define/p' | ( + echo "/* DO NOT EDIT, automatically generated by update_ev_wrap */" cat ) | tee ev_wrap.h |