[llvm-commits] [llvm] r48974 - /llvm/trunk/Makefile.config.in
Erick Tryzelaar
idadesub at users.sourceforge.net
Sun Mar 30 20:46:44 PDT 2008
Author: erickt
Date: Sun Mar 30 22:46:43 2008
New Revision: 48974
URL: http://llvm.org/viewvc/llvm-project?rev=48974&view=rev
Log:
Quote the ocaml executables
realazthat in #llvm was having problems building llvm
because configure was finding an ocaml executable in
a directory with a space in it's name. This patch
puts quotes around the name so that llvm can build for
him.
Modified:
llvm/trunk/Makefile.config.in
Modified: llvm/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.config.in?rev=48974&r1=48973&r2=48974&view=diff
==============================================================================
--- llvm/trunk/Makefile.config.in (original)
+++ llvm/trunk/Makefile.config.in Sun Mar 30 22:46:43 2008
@@ -151,10 +151,10 @@
DOXYGEN := @DOXYGEN@
GROFF := @GROFF@
GZIP := @GZIP@
-OCAMLC := @OCAMLC@
-OCAMLOPT := @OCAMLOPT@
-OCAMLDEP := @OCAMLDEP@
-OCAMLDOC := @OCAMLDOC@
+OCAMLC := "@OCAMLC@"
+OCAMLOPT := "@OCAMLOPT@"
+OCAMLDEP := "@OCAMLDEP@"
+OCAMLDOC := "@OCAMLDOC@"
POD2HTML := @POD2HTML@
POD2MAN := @POD2MAN@
RUNTEST := @RUNTEST@
More information about the llvm-commits
mailing list