Re: (open)Solaris/SPARC tinderbox update
James Andrewartha <[email protected]> Sun, 30 Apr 2006 01:09:26 +0800
| Newsgroups | gmane.comp.gnome.packaging |
|---|---|
| Organization | Data Analysis Australia |
| Message-ID | <[email protected]> |
--=-vrRha67VNZd2Wfo4/plE
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
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
--=-vrRha67VNZd2Wfo4/plE
Content-Description:
Content-Disposition: inline; filename=check.diff
Content-Type: text/x-patch; charset=utf-8
Content-Transfer-Encoding: 7bit
--- 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
--=-vrRha67VNZd2Wfo4/plE
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Gnome-packaging-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gnome-packaging-list
--=-vrRha67VNZd2Wfo4/plE--