[llvm-commits] [polly] r170731 - /polly/branches/release_32/utils/checkout_cloog.sh

Tobias Grosser grosser at fim.uni-passau.de
Thu Dec 20 12:18:01 PST 2012


Author: grosser
Date: Thu Dec 20 14:18:01 2012
New Revision: 170731

URL: http://llvm.org/viewvc/llvm-project?rev=170731&view=rev
Log:
utils: remove the isl directory after cloning cloog

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

Merged from: https://llvm.org/svn/llvm-project/polly/trunk@168252

Modified:
    polly/branches/release_32/utils/checkout_cloog.sh

Modified: polly/branches/release_32/utils/checkout_cloog.sh
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/utils/checkout_cloog.sh?rev=170731&r1=170730&r2=170731&view=diff
==============================================================================
--- polly/branches/release_32/utils/checkout_cloog.sh (original)
+++ polly/branches/release_32/utils/checkout_cloog.sh Thu Dec 20 14:18:01 2012
@@ -66,8 +66,10 @@
 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
 





More information about the llvm-commits mailing list