summaryrefslogtreecommitdiff
path: root/byterun
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez@inria.fr>2017-09-22 15:00:20 +0200
committerDamien Doligez <damien.doligez@inria.fr>2017-09-22 15:01:03 +0200
commit2f00221e7ab7c391e876bf5094539e3a9140cb8a (patch)
treebf33cbbe6c3857158cb6cb6cb8b96ff1c59b1f5a /byterun
parentc8281d1fdfda8964146865a77d2bdcbc9388bfd1 (diff)
downloadocaml-2f00221e7ab7c391e876bf5094539e3a9140cb8a.tar.gz
remove spurious LDFLAGS in ocamlrund and ocamlruni in byterun/Makefile
Diffstat (limited to 'byterun')
-rw-r--r--byterun/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/Makefile b/byterun/Makefile
index 049c64da86..a0e8834915 100644
--- a/byterun/Makefile
+++ b/byterun/Makefile
@@ -174,13 +174,13 @@ libcamlrun.$(A): $(OBJS)
$(call MKLIB,$@, $^)
ocamlrund$(EXE): prims.$(O) libcamlrund.$(A)
- $(MKEXE) $(MKEXEDEBUGFLAG) $(LDFLAGS) -o $@ $^ $(LIBS)
+ $(MKEXE) $(MKEXEDEBUGFLAG) -o $@ $^ $(LIBS)
libcamlrund.$(A): $(DOBJS)
$(call MKLIB,$@, $^)
ocamlruni$(EXE): prims.$(O) libcamlruni.$(A)
- $(MKEXE) $(LDFLAGS) -o $@ $^ $(LIBS)
+ $(MKEXE) -o $@ $^ $(LIBS)
libcamlruni.$(A): $(IOBJS)
$(call MKLIB,$@, $^)