From 5c87749a271f82ab269603ade13867ffd50778ec Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 6 Aug 2020 10:52:23 -0700 Subject: [PATCH] Apply suggestions from code review Flatten the INC definition to one line. Co-authored-by: lzutao --- src/ci/docker/host-x86_64/dist-x86_64-linux/build-clang.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ci/docker/host-x86_64/dist-x86_64-linux/build-clang.sh b/src/ci/docker/host-x86_64/dist-x86_64-linux/build-clang.sh index 0df30f96c22..d6ce2806e39 100755 --- a/src/ci/docker/host-x86_64/dist-x86_64-linux/build-clang.sh +++ b/src/ci/docker/host-x86_64/dist-x86_64-linux/build-clang.sh @@ -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 \