From cafbd2ffc4ac00444b9868b7a46b5827209f65fa Mon Sep 17 00:00:00 2001 From: dvkt Date: Mon, 6 Jan 2020 11:11:59 -0800 Subject: [PATCH] the feature flag is now to negate tls, not enable it --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cbf7866..e48ef94 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,9 @@ clean: # Build and strip the release version $(PHETCH_RELEASE): $(RSFILES) - cargo build --release --features tls + cargo build --release strip $@ # Build the debug version $(PHETCH_DEBUG): $(RSFILES) - cargo build --features tls + cargo build