From c7d44866c30b6c45e8878a9dc2e02797d3cfb8d6 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 13 Jan 2024 20:26:46 -0500 Subject: [PATCH] Put -L before -l in LDFLAGS. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f667973..ed24a17 100755 --- a/configure +++ b/configure @@ -90,7 +90,7 @@ for arg in $SCRIPT_ARGS; do fi CFLAGS="${CFLAGS} -I${CYTOPLASM}/include" - LDFLAGS="${LDFLAGS} -L${CYTOPLASM}/out/lib" + LDFLAGS="-L${CYTOPLASM}/out/lib ${LDFLAGS}" fi ;; *)