Re: (open)Solaris/SPARC tinderbox update
- From: James Andrewartha <jamesa daa com au>
- To: gnome-packaging-list gnome org
- Subject: Re: (open)Solaris/SPARC tinderbox update
- Date: Sun, 30 Apr 2006 01:09:26 +0800
On Sun, 2006-04-30 at 00:29 +0800, James Andrewartha wrote:
> Hi,
>
> I've been gradually fixing problems on my opensolaris/SPARC tinderbox
> http://jhbuild.bxlug.be/builds/machines/trs80-manbo/ so here's an
> infodump of what the current bugs and workarounds are.
I'm also using Luis' idea from microtinder to ignore make check failues,
see attatched diff.
A few more bugs:
gnome-doc-utils needs to update gnome-autogen.sh
http://bugzilla.gnome.org/show_bug.cgi?id=340128
pwlib doesn't build on solaris (log in and go back):
http://www.openh323.org/~openh323/gnatsweb.cgi?cmd=view&pr=235
James Andrewartha
--- autobuild.py Fri Apr 21 18:10:19 2006
+++ jhbuild/frontends/autobuild.py Wed Apr 26 23:35:52 2006
@@ -197,7 +199,12 @@
def handle_error(self, module, state, nextstate, error, altstates):
'''handle error during build'''
- return 'fail'
+ print 'handle error!'
+ # here we want to record that the build failed, but if it happens in make check, act as if we succeeded
+ if state == 'check':
+ return nextstate
+ else:
+ return 'fail'
BUILD_SCRIPT = AutobuildBuildScript
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]