Make build.sh work evan with no arguments
commit4520d610e0616ddfcea6fdc4a0d306d1a5eb48eb
authorff <_ff@tuta.io>
Sun, 17 Dec 2017 12:50:39 +0000 (17 13:50 +0100)
committerff <_ff@tuta.io>
Sun, 17 Dec 2017 22:43:25 +0000 (17 23:43 +0100)
tree180c683405b1134c39ddd0cca5eb5a116f6b0520
parent67b3f7fc1420ee119424fedd5464c3ad02fa65e6
Make build.sh work evan with no arguments

When called without arguments,
build.sh should have invoked clang with some arguments,
but failed because word splitting was turned off,
so it tried to invoke them all as a single command.
Fix it by setting IFS=' ' before invoking clang.
Devember/log17.txt [new file with mode: 0644]
build.sh