Fix unused argument error on Clang.

This commit is contained in:
Jordan Bancino 2024-01-13 20:25:03 -05:00
parent 15fb6d8c2a
commit 19443a1c24
1 changed files with 2 additions and 1 deletions

3
configure vendored
View File

@ -89,7 +89,8 @@ for arg in $SCRIPT_ARGS; do
exit 1
fi
CFLAGS="${CFLAGS} -L${CYTOPLASM}/out/lib -I${CYTOPLASM}/include"
CFLAGS="${CFLAGS} -I${CYTOPLASM}/include"
LDFLAGS="${LDFLAGS} -L${CYTOPLASM}/out/lib"
fi
;;
*)