diff options
author | Carlin Bingham <cb@viennan.net> | 2018-01-16 23:36:24 +1300 |
---|---|---|
committer | Carlin Bingham <cb@viennan.net> | 2018-01-17 00:20:15 +1300 |
commit | 152b881475d2c11fc183669d3d57ed6ac201ef0b (patch) | |
tree | 6568e85a03f455b4cdbfc6fd55266ef9b7975a5c | |
parent | bc72f16e90932998ac4a404af25ce72efeada9a3 (diff) | |
download | mc-152b881475d2c11fc183669d3d57ed6ac201ef0b.tar.gz |
Remove implicit -static from OpenBSD linker cmd
-static is the default if no dynamic libraries are specified but it
being implicitly set overrides dynamic linking if they are
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ case $OS in echo 'export SYS=openbsd' >> config.mk echo export INST_MAN=$prefix/man/man >> config.mk echo 'const Sys = "OpenBSD"' >> mbld/config.myr - echo 'const Linkcmd = ["ld", "-static", "-nopie"]' >> mbld/config.myr + echo 'const Linkcmd = ["ld", "-nopie"]' >> mbld/config.myr echo "const Manpath = \"man/man\"" >> mbld/config.myr ;; *) |