[llvm-commits] [llvm] r45580 - /llvm/trunk/bindings/ocaml/Makefile.ocaml
Gordon Henriksen
gordonhenriksen at mac.com
Fri Jan 4 03:56:02 PST 2008
Author: gordon
Date: Fri Jan 4 05:55:57 2008
New Revision: 45580
URL: http://llvm.org/viewvc/llvm-project?rev=45580&view=rev
Log:
Quote a path in the Ocaml makefile which is likely to include spaces on Windows.
Modified:
llvm/trunk/bindings/ocaml/Makefile.ocaml
Modified: llvm/trunk/bindings/ocaml/Makefile.ocaml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/Makefile.ocaml?rev=45580&r1=45579&r2=45580&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/Makefile.ocaml (original)
+++ llvm/trunk/bindings/ocaml/Makefile.ocaml Fri Jan 4 05:55:57 2008
@@ -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
More information about the llvm-commits
mailing list