From fbddbaf115fc55d4063ebaa3257fdae886ab23b3 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Mon, 31 Mar 2008 03:46:43 +0000 Subject: [PATCH] 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. llvm-svn: 48974 --- Makefile.config.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.config.in b/Makefile.config.in index f3a93465928..72ab66e4d2b 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -151,10 +151,10 @@ DOT := @DOT@ 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@