[pisa-src] r2247 - trunk/tools/pisa_autobuild.sh

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 07 Apr 2010 14:10:07 +0200

Author: biurrun
Date: Wed Apr  7 14:09:57 2010
New Revision: 2247

Log:
Making directories executable is enough to make a read-only tree writable.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Wed Apr  7 13:10:44 2010        (r2246)
+++ trunk/tools/pisa_autobuild.sh       Wed Apr  7 14:09:57 2010        (r2247)
@@ -53,7 +53,7 @@
 cleanup()
 {
     # The build directory created by make distcheck is read-only.
-    chmod -R u+rwx "$CHECKOUT_DIR"
+    chmod -R u+rwX "$CHECKOUT_DIR"
     rm -rf "$CHECKOUT_DIR"
     echo $PISA_HEAD_REVISION > $BUILD_DIR/PISA_HEAD_REVISION
     exit $1

Other related posts:

  • » [pisa-src] r2247 - trunk/tools/pisa_autobuild.sh - Diego Biurrun