summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2013-11-01 01:10:58 +0000
committerSylvestre Ledru <sylvestre@debian.org>2013-11-01 01:10:58 +0000
commit3d841cb9d38aa98ba4fb15938e2124f67c000ca7 (patch)
treeeb92cf2890ac3d3d80d9ba6dc775d30b555be5ce /bindings
parente239d20d36c2cdf4e4143c38d470300c11441a16 (diff)
downloadllvm-3d841cb9d38aa98ba4fb15938e2124f67c000ca7.tar.gz
llvm-3d841cb9d38aa98ba4fb15938e2124f67c000ca7.tar.bz2
llvm-3d841cb9d38aa98ba4fb15938e2124f67c000ca7.tar.xz
OCaml bindings: fix typo
Patch by Peter Zotov git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193845 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ocaml/Makefile.ocaml2
-rw-r--r--bindings/ocaml/llvm/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml
index 62f6588069..c288346e3b 100644
--- a/bindings/ocaml/Makefile.ocaml
+++ b/bindings/ocaml/Makefile.ocaml
@@ -67,7 +67,7 @@ Compile.CMX := $(strip $(OCAMLOPT) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
Archive.CMXA := $(strip $(OCAMLOPT) -a $(OCAMLAFLAGS) $(OCAMLDEBUGFLAG) -o)
ifdef OCAMLOPT
-Archive.EXE := $(strip $(OCAMLOPT) -cc $(CXX) $(OCAMLCFLAGS) $(UsedOcamLibs:%=%.cmxa) $(OCAMLDEBUGFLAG) -o)
+Archive.EXE := $(strip $(OCAMLOPT) -cc $(CXX) $(OCAMLCFLAGS) $(UsedOcamlLibs:%=%.cmxa) $(OCAMLDEBUGFLAG) -o)
else
Archive.EXE := $(strip $(OCAMLC) -cc $(CXX) $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG:%=%.cma) -o)
endif
diff --git a/bindings/ocaml/llvm/Makefile b/bindings/ocaml/llvm/Makefile
index 203075a9bd..850f564a0c 100644
--- a/bindings/ocaml/llvm/Makefile
+++ b/bindings/ocaml/llvm/Makefile
@@ -14,7 +14,7 @@
LEVEL := ../../..
LIBRARYNAME := llvm
UsedComponents := core
-UsedOcamLibs := llvm
+UsedOcamlLibs := llvm
include ../Makefile.ocaml