[maemo-commits] [maemo-commits] r8243 - projects/haf/trunk/python-dbus
From: luciano at stage.maemo.org luciano at stage.maemo.orgDate: Tue Nov 21 20:36:38 EET 2006
- Previous message: [maemo-commits] r8242 - in projects/haf/trunk/python-dbus: . dbus
- Next message: [maemo-commits] r8245 - in projects/haf/trunk/pygtk: . gtk
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: luciano
Date: 2006-11-21 20:36:24 +0200 (Tue, 21 Nov 2006)
New Revision: 8243
Modified:
projects/haf/trunk/python-dbus/setup.py
Log:
Correction to avoid libfakeroot-tpc error
Modified: projects/haf/trunk/python-dbus/setup.py
===================================================================
--- projects/haf/trunk/python-dbus/setup.py 2006-11-21 18:22:58 UTC (rev 8242)
+++ projects/haf/trunk/python-dbus/setup.py 2006-11-21 18:36:24 UTC (rev 8243)
@@ -56,7 +56,8 @@
output, error = run(cmd)
- if error:
+ #Workaround to avoid libfakeroot-tcp error inside scratchbox
+ if error and not 'fakeroot' in error:
print >>sys.stderr, "ERROR: checking %s:\n%s" % (names, error)
raise SystemExit
- Previous message: [maemo-commits] r8242 - in projects/haf/trunk/python-dbus: . dbus
- Next message: [maemo-commits] r8245 - in projects/haf/trunk/pygtk: . gtk
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
