summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-04-04 12:41:11 +0200
committerJustus Winter <justus@sequoia-pgp.org>2018-04-04 13:01:10 +0200
commit5298a5409162793860fae38c19cf752e463eee7b (patch)
treee21c99d043007c25837ad90e81065b3834ac228e /Makefile
parent34973a1457730eb96d42d5f0718875fcef7fedd5 (diff)
When dist-checking, deny any network access.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b25c4924..472b02ed 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,6 @@ examples:
.PHONY: doc
doc:
$(CARGO) doc $(CARGO_FLAGS) --no-deps --all
- $(CARGO) doc $(CARGO_FLAGS) --no-deps --package nettle
.PHONY: deploy-doc
deploy-doc: doc
@@ -99,7 +98,7 @@ dist-test dist-check: target/dist/sequoia-$(VERSION).tar.xz
mkdir -p target/dist-check
$(TAR) xf $< -C target/dist-check
cd target/dist-check/sequoia-$(VERSION) && \
- CARGO_HOME=$$(mktemp -d) $(MAKE) test
+ CARGO_HOME=$$(mktemp -d) $(MAKE) test CARGO_FLAGS=--frozen
rm -rf target/dist-check/sequoia-$(VERSION)
# Housekeeping.