diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-17 01:51:28 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-17 01:51:28 +0000 |
commit | d0d7eed20b43fd13a4fcb1e37eb4cabcd7a47a91 (patch) | |
tree | 032accfdae146610b14eee45fb1c722877f0f18b /configure | |
parent | 525d5afc5b3a613fe019f263549ef0b28228d974 (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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |