Skip to content

Commit 37bdc20

Browse files
committed
Use non-hidden $BUILD_TMP directory (build instead of .build)
1 parent a8f12e4 commit 37bdc20

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/ccache/
22
/output/
33
/src/
4+
/build/
45
/.build/
6+
/inst/

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
output*/
22
ccache*/
3+
/build/
34
.build*/
45
/src/
6+
/inst/

scripts/global-vars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
# (as seen from inside the container).
2323
OUTPUT_DIR="$REPO_ROOT/output"
2424
CCACHE_DIR="$REPO_ROOT/ccache"
25-
BUILD_TMP="$REPO_ROOT/.build"
25+
BUILD_TMP="$REPO_ROOT/build"
2626

2727
SRC_DIR="$REPO_ROOT/src"
2828
LLVM_SOURCE_DIR="$SRC_DIR/llvm"

0 commit comments

Comments
 (0)