Skip to content
Prev 32313 / 63421 Next

R build fails during make when configured with "--with-x=no" (PR#13665)

jeet at ku.edu wrote:

            
,,,,
(Even more "fun" would ensue if in fact there were a Makefile there...)
Shell script and Make portability is a pain in the derriere, but
offhand, those double quotes just look wrong:

viggo:~/>for i in "" ; do echo $i; done

viggo:~/>for i in  ; do echo $i; done
viggo:~/>for i in "foo bar" ; do echo $i; done
foo bar
viggo:~/>for i in foo bar ; do echo $i; done
foo
bar

Notice that the versions with quotes invariably do the Wrong Thing....