From 4eae54288f1847e5adf97c84c8331380e685037d Mon Sep 17 00:00:00 2001 From: Raghesh Aloor Date: Wed, 26 Oct 2011 12:25:49 +0000 Subject: [PATCH] www: Change in cloog installation procedure llvm-svn: 143025 --- polly/www/get_started.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/polly/www/get_started.html b/polly/www/get_started.html index 47fe9f1ed5e7..4de294fa0284 100644 --- a/polly/www/get_started.html +++ b/polly/www/get_started.html @@ -65,9 +65,11 @@ export CLOOG_INSTALL=${LLVM_SRC}/cloog_install

First installation

 ${POLLY_SRC}/utils/checkout_cloog.sh ${CLOOG_SRC}
-${POLLY_SRC}/configure --prefix=${CLOOG_INSTALL}
+cd ${CLOOG_SRC}
+./configure --prefix=${CLOOG_INSTALL}
 make
 make install
+cd ${BASE}
 

Update the installation

@@ -76,8 +78,10 @@ Updating CLooG may become necessary, if Polly uses a feature only available in a recent version of CLooG.
 ${POLLY_SRC}/utils/checkout_cloog.sh ${CLOOG_SRC}
+cd ${CLOOG_SRC}
 make
 make install
+cd ${BASE}
 

Install Pocc (Optional)