From d0d7eed20b43fd13a4fcb1e37eb4cabcd7a47a91 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 17 Nov 2018 01:51:28 +0000 Subject: Corrected typo in previous commit In the previous commit, for testing the static build, I had added a `-ljunk' option to the compiler. But I had forgot to remove it! It is removed now. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index cc5bd88..76b6879 100755 --- a/configure +++ b/configure @@ -413,7 +413,7 @@ cprog=$ddir/static-test.c echo "#include " > $cprog echo "int main(void) {return 0;}" >> $cprog if [ x$CC = x ]; then CC=gcc; fi; -if $CC $cprog -o$oprog -static -ljunk &> /dev/null; then +if $CC $cprog -o$oprog -static &> /dev/null; then export static_build="yes" else export static_build="no" -- cgit v1.2.1