utils: remove the isl directory after cloning cloog

This fixes my previous commit, thanks to "Dmitry N. Mikushin"
<maemarcus@gmail.com>

llvm-svn: 168252
This commit is contained in:
Sebastian Pop 2012-11-17 04:57:41 +00:00
parent 035fc9aa9f
commit 328bd58b55
1 changed files with 3 additions and 1 deletions

View File

@ -66,8 +66,10 @@ if [ ${IS_GIT} -eq 0 ]
then
echo :: Performing initial checkout
# Remove the existing CLooG and ISL dirs to avoid crashing older git versions.
run rm -rf ${CLOOG_DIR} ${ISL_DIR}
cd ${CLOOG_DIR}/..
run rm -rf ${CLOOG_DIR}
run git clone http://repo.or.cz/r/cloog.git ${CLOOG_DIR}
run rm -rf ${ISL_DIR}
run git clone http://repo.or.cz/r/isl.git ${ISL_DIR}
fi