From 7683491ebe972088c3a3147f1766e214f7753b6a Mon Sep 17 00:00:00 2001
From: Ralf Jung <post@ralfj.de>
Date: Wed, 1 Aug 2012 12:57:21 +0200
Subject: [PATCH] Remove the niceness by default - that should be up to the
 caller

---
 auto_debuild.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/auto_debuild.py b/auto_debuild.py
index ab04dc0..8ef290b 100755
--- a/auto_debuild.py
+++ b/auto_debuild.py
@@ -191,7 +191,7 @@ def createDebianFiles(config):
 
 def buildDebianPackage(config):
 	commands = ['dpkg-checkbuilddeps', 'debian/rules clean', 'debian/rules build', 'fakeroot debian/rules binary', 'debian/rules clean']
-	command = ['nice', 'bash', '-c', ' && '.join(commands)]
+	command = ['bash', '-c', ' && '.join(commands)] # make it all one command, so we don't have to open and close the chroot too often
 	subprocess.check_call(commandInBuildEnv(config, command))
 	shutil.rmtree('debian') # it only contains what we just created
 
-- 
2.39.5