From: Jack Jansen Date: Wed, 18 Jun 2003 21:28:44 +0000 (+0000) Subject: - Create TMPDIR only if it doesn't exist yet X-Git-Tag: v2.3c1~378 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc3542f67843093674783cc9276ce0d513cb1a26;p=python - Create TMPDIR only if it doesn't exist yet - Set the installer to use our permissions, not influenced by the umask. --- diff --git a/Mac/OSX/Dist/build b/Mac/OSX/Dist/build index c830eae53a..9c77e7cc69 100755 --- a/Mac/OSX/Dist/build +++ b/Mac/OSX/Dist/build @@ -48,7 +48,9 @@ else mkdir -p $BUILDROOT fi rm -rf $DMGDIR -mkdir $TMPDIR +if [ ! -e $TMPDIR ]; then + mkdir $TMPDIR +fi chgrp admin $TMPDIR mkdir -p $DMGDIR/root @@ -118,6 +120,7 @@ python $PYTHONSRC/Mac/scripts/buildpkg.py \ --NeedsAuthorization="YES" \ --Relocatable="NO" \ --InstallOnly="YES" \ + --UseUserMask="NO" \ $INSTALLROOT \ $RESOURCEDIR