]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
server: fix NULL file mode
authorChris Larson <chris_larson@mentor.com>
Sat, 18 Dec 2010 17:22:43 +0000 (10:22 -0700)
committerChris Larson <chris_larson@mentor.com>
Sat, 18 Dec 2010 17:22:43 +0000 (10:22 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
lib/bb/server/process.py

index dd84fdfaddad8d985fcd3aadacf4f0c98ef599f3..78fa5be3f1a8a216db29000c788714a48c6e79ce 100644 (file)
@@ -30,7 +30,7 @@ from multiprocessing import Process, Event
 from bb.cooker import BBCooker
 
 logger = logging.getLogger('BitBake')
-NULL = open('/dev/null', 'a')
+NULL = open('/dev/null', 'r+')
 
 class ServerCommunicator():
     def __init__(self, connection):