diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-01-04 11:55:57 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-01-04 11:55:57 +0000 |
commit | 96a6931c0ced19636c9ace95755034c93ce5da86 (patch) | |
tree | 1a9e55a5159f4b47c16685fc2fa31c5033814568 /bindings/ocaml | |
parent | 991500e329b419fca3aa547329a34b04e2028ef1 (diff) | |
download | external_llvm-96a6931c0ced19636c9ace95755034c93ce5da86.zip external_llvm-96a6931c0ced19636c9ace95755034c93ce5da86.tar.gz external_llvm-96a6931c0ced19636c9ace95755034c93ce5da86.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/ocaml')
-rw-r--r-- | bindings/ocaml/Makefile.ocaml | 2 |
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 |