From b6b988bceb9ea2bc40ebfa4c0b73debaa3e75659 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 20 Jun 2003 21:40:57 +0000 Subject: [PATCH] Cop out, and set things to be group-writeable recursively. The various xxxMODE flags don't cut it. Also set the umask to 2 before doing the compileall on the destination system. --- Mac/OSX/Dist/build | 4 ++++ Mac/OSX/Dist/resources/Welcome.txt | 2 +- Mac/OSX/Dist/resources/postflight | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Mac/OSX/Dist/build b/Mac/OSX/Dist/build index 51ea7270c0..b839ab6964 100755 --- a/Mac/OSX/Dist/build +++ b/Mac/OSX/Dist/build @@ -91,6 +91,10 @@ make make DIRMODE=775 EXEMODE=775 FILEMODE=664 DESTDIR=$INSTALLROOT frameworkinstall make DIRMODE=775 EXEMODE=775 FILEMODE=664 DESTDIR=$INSTALLROOT frameworkinstallextras +# Unfortunately all the ...MODE arguments above still don't do the trick. +# Cop out, and recursively set everything group-writeable. +chmod -R ug+w $INSTALLROOT + if [ "$builddocs" = "y" -o "$builddocs" = "Y" ]; then ./python.exe $PYTHONSRC/Mac/OSX/setupDocs.py build echo "" diff --git a/Mac/OSX/Dist/resources/Welcome.txt b/Mac/OSX/Dist/resources/Welcome.txt index 5f0bd375bd..c8558356a2 100644 --- a/Mac/OSX/Dist/resources/Welcome.txt +++ b/Mac/OSX/Dist/resources/Welcome.txt @@ -1,4 +1,4 @@ -This program will install MacPython 2.3b1 for Mac OS X. +This program will install MacPython 2.3b1+ for Mac OS X. MacPython consists of the Python programming language interpreter, plus a set of programs to allow easy access to it for Mac users (an diff --git a/Mac/OSX/Dist/resources/postflight b/Mac/OSX/Dist/resources/postflight index 71ff2c1759..d1ba76f01d 100755 --- a/Mac/OSX/Dist/resources/postflight +++ b/Mac/OSX/Dist/resources/postflight @@ -9,6 +9,8 @@ PYVER=2.3 PKG=$1 DEST=$2 +# Make sure things are group-writeable +umask 2 # if destination is / then use usr/local/bin, otherwise just bin if [ "$DEST" = "/" ]; then -- 2.50.0