# HG changeset patch # User "Yann E. MORIN" # Date 1299192363 -3600 # Node ID bbfd61c12916a9e1bcde0983b8e02c6de55699ed # Parent e5678923ea6d265effc0db100fe1ffba98ee0770 scripts: do not chmod u+w the whole source directory Doing a chmod on the whole source dir after every packages are extracted can take a hell of a lot of time. The offending packages are far from legion, and they now have their own chmod u+w to cleanup their own mess... Reported-by: ANDY KENNEDY Signed-off-by: "Yann E. MORIN" diff -r e5678923ea6d -r bbfd61c12916 scripts/functions --- a/scripts/functions Thu Mar 03 19:32:05 2011 +0100 +++ b/scripts/functions Thu Mar 03 23:46:03 2011 +0100 @@ -681,11 +681,6 @@ *) CT_Abort "Don't know how to handle '${basename}${ext}': unknown extension";; esac - # Some tarballs have read-only files... :-( - # Because of nochdir, we don't know where we are, so chmod all - # the src tree - CT_DoExecLog DEBUG chmod -R u+w "${CT_SRC_DIR}" - # Don't mark as being extracted for git case "${ext}" in /.git) ;;