diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-12-11 04:40:27 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-12-11 04:40:27 +0000 |
commit | dc26cbf0be7040f4f84892b4b43dd86e2bebef3a (patch) | |
tree | 3df1158338c9b2279023d03ad3dd22e29e671807 /Tools | |
parent | 4e0a14315c2e2495c07435a50e2ea399d2e31ed1 (diff) |
Bump the file size limit to 300MB now that openoffice distfiles exceed
256MB. Clarify a comment.
Notes
Notes:
svn path=/head/; revision=150854
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index 8379105bd9b1..72fa76618691 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -194,8 +194,8 @@ unset PORTSDIR # wait 1 hour before killing build with no output export TIMEOUT=7200 -# to prevent runaway processes -- 256 meg file size limit, one hour CPU limit -ulimit -f 524288 +# to prevent runaway processes -- 300 meg file size limit, one hour CPU limit +ulimit -f 614400 ulimit -t 3600 # directories to clean @@ -267,9 +267,9 @@ echo "in directory ${chroot}" | tee -a ${chroot}/tmp/${pkgname}.log mkdir -p ${chroot}/a/ports rm -rf ${chroot}/usr/ports -# Don't build in a world-writable directory because some ports hardcode -# this path and try to load things from it at runtime, which is bad for -# user security +# Don't build in a world-writable standard directory because some ports +# hardcode this path and try to load things from it at runtime, which is +# bad for user security rm -rf ${chroot}/${WRKDIRPREFIX} mkdir -p ${chroot}/${WRKDIRPREFIX} |