Bug 3721

Summary: eval error in for loop
Product: Busybox Reporter: richard.genoud
Component: OtherAssignee: unassigned
Status: RESOLVED FIXED    
Severity: normal CC: busybox-cvs
Priority: P5    
Version: 1.18.x   
Target Milestone: ---   
Hardware: Other   
OS: Linux   
Host: Target:
Build:

Description richard.genoud 2011-05-13 09:28:36 UTC
this behaviour wax not present in 1.15.3 :

> a=1; b=0; for i in 1 ; do eval b=$a ; echo $b ; done
sh: can't execute 'b=1': No such file or directory
0

a=1; b=0; for i in 1 ; do ; eval b=$a ; echo $b ; done
1