radareorg / acr

autoconf replacement
GNU General Public License v2.0
34 stars 10 forks source link

CHECK statement delete spaces #15

Closed meskio closed 6 years ago

meskio commented 6 years ago

The CHECK statement seems to remove the spaces from the commands. Using the example https://github.com/radare/acr/blob/master/examples/check.acr it produces:

echo"importjava.util.*;">temp.java ;echo"classtemp{publicstaticvoidmain(){Vector<String>v=null;}}">>temp.java ;${JAVAC}-source1.5temp.java>/dev/null2>&1 ;JAVA5=$? ;rm-ftemp.java

Which fails as echoimportjava.uitl.*...: not found.