projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb21ced
)
Fix hxtool eating backslash sequences for sh != bash
author
blueswir1
<blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Mar 2009 10:50:43 +0000
(10:50 +0000)
committer
blueswir1
<blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Mar 2009 10:50:43 +0000
(10:50 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6946
c046a42c
-6fe2-441c-8c8c-
71466251a162
hxtool
patch
|
blob
|
history
diff --git
a/hxtool
b/hxtool
index 49b722b6fcd1f54e5fdbbe2567157a9fae0963fb..885abe222d6408e15c9dcb9ef4c47e68f8890c65 100644
(file)
--- a/
hxtool
+++ b/
hxtool
@@
-10,7
+10,7
@@
hxtoh()
STEXI*|ETEXI*) flag=$(($flag^1))
;;
*)
- test $flag -eq 1 &&
echo
"$str"
+ test $flag -eq 1 &&
printf "%s\n"
"$str"
;;
esac
done