hush: two NOMMU fixes for bugs 877 and 883

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-01-12 13:45:45 +01:00
parent f2c8aa6676
commit b70cef71eb
3 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
Ok
Ok
Ok
Ok
Done

View File

@@ -0,0 +1,5 @@
echo Not shown | if true; then echo $(echo Ok); fi
echo Not shown | if true; then echo `echo Ok`; fi
echo Not shown | ( if true; then echo $(echo Ok); fi )
echo Not shown | ( if true; then echo `echo Ok`; fi )
echo Done