[pypy-svn] r75730 - in pypy/build/ubuntu: 1.3.0/debian trunk/debian

getxsick at codespeak.net getxsick at codespeak.net
Thu Jul 1 19:54:33 CEST 2010


Author: getxsick
Date: Thu Jul  1 19:54:32 2010
New Revision: 75730

Modified:
   pypy/build/ubuntu/1.3.0/debian/configure.py
   pypy/build/ubuntu/trunk/debian/configure.py
Log:
build package only if there is enough amount of RAM on the building machine
(the current threshold is set to 1.4G)


Modified: pypy/build/ubuntu/1.3.0/debian/configure.py
==============================================================================
--- pypy/build/ubuntu/1.3.0/debian/configure.py	(original)
+++ pypy/build/ubuntu/1.3.0/debian/configure.py	Thu Jul  1 19:54:32 2010
@@ -35,7 +35,7 @@
     return make_in % substitutions
 
 def run():
-    check_memory()
+    check_memory(exit=True)
     build_arch = None
     host_arch = None
     prefix= None

Modified: pypy/build/ubuntu/trunk/debian/configure.py
==============================================================================
--- pypy/build/ubuntu/trunk/debian/configure.py	(original)
+++ pypy/build/ubuntu/trunk/debian/configure.py	Thu Jul  1 19:54:32 2010
@@ -35,7 +35,7 @@
     return make_in % substitutions
 
 def run():
-    check_memory()
+    check_memory(exit=True)
     build_arch = None
     host_arch = None
     prefix= None



More information about the Pypy-commit mailing list