aboutsummaryrefslogtreecommitdiffstats
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
commitc07bc44eca96f9a08f3e7bad30ce02a2ed13c0ba (patch)
tree1a9e55a5159f4b47c16685fc2fa31c5033814568 /bindings
parente5e9fe862d9876247b81c23cba0cdad715bc40d4 (diff)
downloadexternal_llvm-c07bc44eca96f9a08f3e7bad30ce02a2ed13c0ba.zip
external_llvm-c07bc44eca96f9a08f3e7bad30ce02a2ed13c0ba.tar.gz
external_llvm-c07bc44eca96f9a08f3e7bad30ce02a2ed13c0ba.tar.bz2
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 0093eb2..15edb01 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