aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2008-03-31 03:46:43 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2008-03-31 03:46:43 +0000
commit87a3b68bf701530b9dd9d181907542048dfae681 (patch)
treef444849aad1aede4a6572ba237a5c0fd6e9302e8 /Makefile.config.in
parentbc91bd34f1d2e4fdfef691fbe9015eabdeec8071 (diff)
downloadexternal_llvm-87a3b68bf701530b9dd9d181907542048dfae681.zip
external_llvm-87a3b68bf701530b9dd9d181907542048dfae681.tar.gz
external_llvm-87a3b68bf701530b9dd9d181907542048dfae681.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index f3a9346..72ab66e 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@