From: Gordon Henriksen Date: Fri, 4 Jan 2008 11:55:57 +0000 (+0000) Subject: Quote a path in the Ocaml makefile which is likely to include spaces on Windows. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=96a6931c0ced19636c9ace95755034c93ce5da86 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 --- diff --git a/bindings/ocaml/Makefile.ocaml b/bindings/ocaml/Makefile.ocaml index 0093eb28cf6..15edb01ff32 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