- Create TMPDIR only if it doesn't exist yet

- Set the installer to use our permissions, not influenced by the umask.
This commit is contained in:
Jack Jansen 2003-06-18 21:28:44 +00:00
parent befa37dd05
commit fc3542f678
1 changed files with 4 additions and 1 deletions

View File

@ -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