Skip to content

Commit

Permalink
OCaml bindings: fix typo
Browse files Browse the repository at this point in the history
Patch by Peter Zotov



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193845 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
sylvestre committed Nov 1, 2013
1 parent e239d20 commit 3d841cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/ocaml/Makefile.ocaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bindings/ocaml/llvm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
LEVEL := ../../..
LIBRARYNAME := llvm
UsedComponents := core
UsedOcamLibs := llvm
UsedOcamlLibs := llvm

include ../Makefile.ocaml

Expand Down

0 comments on commit 3d841cb

Please sign in to comment.