Re: Custom build products location
Re: Custom build products location
- Subject: Re: Custom build products location
- From: Graham J Lee <email@hidden>
- Date: Thu, 8 Dec 2005 17:13:37 +0000
On 8 Dec 2005, at 16:00, Markus Hitter wrote:
Am 07.12.2005 um 16:36 schrieb Steve Mills:
/tmp? You've got to be kidding. tmp's contents can be deleted. I
don't want my 20 minutes worth of building to suddenly go away
when I least expect it.
FWIW, /tmp's contents doesn't suddenly vanish. Files there get
erased at boot time or if they are several days old. I'm not even
sure about the latter in Mac OS X.
This is in /etc/periodic/daily/500.daily:
if [ -d /tmp ]; then
cd /tmp && {
find . -fstype local -type f -atime +3 -ctime +3 -exec rm -f --
{} \;
find -d . -fstype local ! -name . -type d -mtime +1 -exec rmdir
-- {} \; \
>/dev/null 2>&1; }
fi
Cheers,
Graham.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden