forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bazel: avoid
read-only file system
error when calling into autom4te
See 3f50217 for more context. Many people are encountering the error described in that commit and it's not feasible to ask everyone to install an `autom4te` shim. Instead we include the shim in the build definition. We also remove it from the builder image to demonstrate that the fix works. Closes cockroachdb#70986. Release note: None
- Loading branch information
1 parent
73f5feb
commit 7e8a0a1
Showing
4 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
# Autom4te's default caching behavior breaks the Bazel sandbox sometimes. This | ||
# shim script just invokes the actual `autom4te` script disabling caching. | ||
/usr/bin/autom4te --no-cache "$@" | ||
autom4te --no-cache "$@" |