summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-01-04 11:55:57 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-01-04 11:55:57 +0000
commit96a6931c0ced19636c9ace95755034c93ce5da86 (patch)
tree1a9e55a5159f4b47c16685fc2fa31c5033814568 /bindings
parent991500e329b419fca3aa547329a34b04e2028ef1 (diff)
downloadllvm-96a6931c0ced19636c9ace95755034c93ce5da86.tar.gz
llvm-96a6931c0ced19636c9ace95755034c93ce5da86.tar.bz2
llvm-96a6931c0ced19636c9ace95755034c93ce5da86.tar.xz
Quote a path in the Ocaml makefile which is likely to include spaces on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ocaml/Makefile.ocaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml
index 0093eb28cf..15edb01ff3 100644
--- a/bindings/ocaml/Makefile.ocaml
+++ b/bindings/ocaml/Makefile.ocaml
@@ -20,7 +20,7 @@
include $(LEVEL)/Makefile.config
# CFLAGS needs to be set before Makefile.rules is included.
-CFLAGS += -I$(shell $(OCAMLC) -where)
+CFLAGS += -I"$(shell $(OCAMLC) -where)"
include $(LEVEL)/Makefile.common