Apply suggestions from code review

Flatten the INC definition to one line.

Co-authored-by: lzutao <taolzu@gmail.com>
This commit is contained in:
Josh Stone 2020-08-06 10:52:23 -07:00 committed by Josh Stone
parent a210a29303
commit 5c87749a27

View file

@ -18,8 +18,7 @@ cd clang-build
# For whatever reason the default set of include paths for clang is different
# than that of gcc. As a result we need to manually include our sysroot's
# include path, /rustroot/include, to clang's default include path.
INC="/rustroot/include"
INC="$INC:/usr/include"
INC="/rustroot/include:/usr/include"
hide_output \
cmake ../llvm \