aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-17 01:51:28 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-17 01:51:28 +0000
commitd0d7eed20b43fd13a4fcb1e37eb4cabcd7a47a91 (patch)
tree032accfdae146610b14eee45fb1c722877f0f18b /configure
parent525d5afc5b3a613fe019f263549ef0b28228d974 (diff)
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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 <stdio.h>" > $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"