30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
We provide source tarballs without git functionality.
|
||
|
'MY_REV' gets replaced with the corresponding revision in prepare().
|
||
|
--- a/build/ninja_gen/src/git.rs
|
||
|
+++ b/build/ninja_gen/src/git.rs
|
||
|
@@ -13,7 +13,7 @@ pub struct SyncSubmodule {
|
||
|
|
||
|
impl BuildAction for SyncSubmodule {
|
||
|
fn command(&self) -> &str {
|
||
|
- "git -c protocol.file.allow=always submodule update --init $path"
|
||
|
+ "true"
|
||
|
}
|
||
|
|
||
|
fn files(&mut self, build: &mut impl build::FilesHandle) {
|
||
|
--- a/build/runner/src/build.rs
|
||
|
+++ b/build/runner/src/build.rs
|
||
|
@@ -161,13 +161,7 @@ fn maybe_update_buildhash(build_root: &Utf8Path) {
|
||
|
}
|
||
|
|
||
|
fn get_buildhash() -> String {
|
||
|
- let output = Command::new("git")
|
||
|
- .args(["rev-parse", "--short=8", "HEAD"])
|
||
|
- .output()
|
||
|
- .expect("git");
|
||
|
- assert!(output.status.success(),
|
||
|
- "Invoking 'git' failed. Make sure you're building from a clone of the git repo, and that 'git' is installed.");
|
||
|
- String::from_utf8(output.stdout).unwrap().trim().into()
|
||
|
+ String::from("MY_REV").trim().into()
|
||
|
}
|
||
|
|
||
|
fn write_if_changed(path: &Utf8Path, contents: &str) {
|