Fix build of ocamlrund and ocamlruni under Unix

Because of previous commits these programs were not using LDFLAGS
when built under Linux.

This commit fixes this.
master
Sébastien Hinderer 2017-09-27 12:18:33 +02:00
parent 99878e4839
commit 8b6df3a755
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -388,7 +388,7 @@ esac
# in the OCaml distribution and third-party C source files compiled # in the OCaml distribution and third-party C source files compiled
# with ocamlc. # with ocamlc.
mkexe="\$(CC) \$(CFLAGS) \$(CPPFLAGS)" mkexe="\$(CC) \$(CFLAGS) \$(CPPFLAGS) \$(LDFLAGS)"
mkexedebugflag="-g" mkexedebugflag="-g"
common_cflags="" common_cflags=""
common_cppflags="" common_cppflags=""