From 94dea99a5f5c2a57a7ba1e05aee12589591ff09f Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sat, 5 Dec 2020 13:23:44 +0100 Subject: [PATCH] fix build of crypt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1110b00..4ae09de 100644 --- a/Makefile +++ b/Makefile @@ -5,4 +5,4 @@ install: build-crypt chmod +x ./share/bin/twigc build-crypt: - gcc -lcrypt ./src/crypt/crypt.c -o ./share/bin/crypt + gcc ./src/crypt/crypt.c -o ./share/bin/crypt -lcrypt