summarylogtreecommitdiffstats
path: root/reproducible-build.patch
diff options
context:
space:
mode:
authorMikołaj "D1SoveR" Banasik2021-09-25 11:43:18 +0100
committerMikołaj "D1SoveR" Banasik2021-09-25 11:43:25 +0100
commitee5088eb9ccb616ef569f7a2befbe362844a9a2a (patch)
tree5f55b310146fbf76fce84e895c80817e39b331c6 /reproducible-build.patch
parentdedee69a944cfd198204fcf3703cb82519af8650 (diff)
downloadaur-ee5088eb9ccb616ef569f7a2befbe362844a9a2a.tar.gz
Moved the size optimisations above dependencies list.
This should stop the patch from becoming inapplicable when new dependencies are added. Also, removed the --locked flag as it was actually breaking the build (likely due to stale lockfile).
Diffstat (limited to 'reproducible-build.patch')
-rw-r--r--reproducible-build.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/reproducible-build.patch b/reproducible-build.patch
deleted file mode 100644
index 1ec6caeec3ea..000000000000
--- a/reproducible-build.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 475c85b..2800d44 100644
---- a/Makefile
-+++ b/Makefile
-@@ -37,13 +37,13 @@ build:
- cargo build
-
- release:
-- cargo build --release
-+ cargo build --release --locked
-
- lint:
- cargo clippy -- -D warnings
-
- test:
-- cargo test
-+ cargo test --release --locked
-
- clean:
- cargo clean