Re: [Libreoffice] new bootstrap: quick stop

2010-12-07 Thread Thomas Klausner
On Sun, Dec 05, 2010 at 07:17:28PM -0600, Norbert Thiebaud wrote: > On Sun, Dec 5, 2010 at 7:03 PM, Thomas Klausner wrote: > > I found the simplest fix for it: > > diff --git a/Makefile.in b/Makefile.in > > index 9e05c70..4fbbf4a 100644 > > --- a/Makefile.in > > +++ b/Makefile.in > > @@ -1,7 +1,7

Re: [Libreoffice] new bootstrap: quick stop

2010-12-05 Thread Jonathan Aquilina
I had an issue with /bin/sh as the shebang. Kendy seems to have fixed that issue for me. What i have been informed as to why /bin/sh is being used is for portability. On 12/6/10 2:17 AM, Norbert Thiebaud wrote: On Sun, Dec 5, 2010 at 7:03 PM, Thomas Klausner wrote: I found the simplest fix f

Re: [Libreoffice] new bootstrap: quick stop

2010-12-05 Thread Norbert Thiebaud
On Sun, Dec 5, 2010 at 7:03 PM, Thomas Klausner wrote: > I found the simplest fix for it: > diff --git a/Makefile.in b/Makefile.in > index 9e05c70..4fbbf4a 100644 > --- a/Makefile.in > +++ b/Makefile.in > @@ -1,7 +1,7 @@ >  # @configure_input@ >  # FIXME: create 'install' and 'check' target > > -S

Re: [Libreoffice] new bootstrap: quick stop

2010-12-05 Thread Thomas Klausner
I found the simplest fix for it: diff --git a/Makefile.in b/Makefile.in index 9e05c70..4fbbf4a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ # @configure_input@ # FIXME: create 'install' and 'check' target -SHELL=/bin/sh +SHELL=/bin/bash all: dmake/dm...@exeext@ fetch @.

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
On Fri, Dec 03, 2010 at 08:31:12PM +, Michael Meeks wrote: > Hmm, do you have dmake/dmake Yes. > - and do you also have it in your > solver/./bin directory ? (where bootstrap should copy it if it > succeeds ...). No, that's the only copy: # find . -name dmake ./dmake ./dmake/dmake

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Michael Meeks
Hi Thomas, On Fri, 2010-12-03 at 21:09 +0100, Thomas Klausner wrote: > Hm, it's not a complete fix. > This way, I at least get a git checkout and tarfiles, but then: .. > build -- version: 275224 > > ERROR: dmake: Command not found. Please rerun bootstrap Hmm, do you have dmake/dmake -

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Michael Meeks
On Fri, 2010-12-03 at 20:20 +0100, Thomas Klausner wrote: > The attached makes it get much further. > It's probably caused by unset returning an error and that error being > returned outside, so the "&&" chain stops. > So I add an "echo" that can't fail at the end of the script. What fun

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
Hm, it's not a complete fix. This way, I at least get a git checkout and tarfiles, but then: * * Running the post download checks. * checking build system typ

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
The attached makes it get much further. It's probably caused by unset returning an error and that error being returned outside, so the "&&" chain stops. So I add an "echo" that can't fail at the end of the script. Ok to push? Thomas diff --git a/set_soenv.in b/set_soenv.in index 2c56a4d..26500db

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
On Fri, Dec 03, 2010 at 04:07:08PM +, Michael Meeks wrote: > Hi Miklos, > > On Fri, 2010-12-03 at 16:04 +0100, Miklos Vajna wrote: > > Trivial fix for the bootstrap repo attached, does it look sane? > > Prolly better to get the download script to create that itself ? [ and > AFAIR the B

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Michael Meeks
Hi Miklos, On Fri, 2010-12-03 at 16:04 +0100, Miklos Vajna wrote: > Trivial fix for the bootstrap repo attached, does it look sane? Prolly better to get the download script to create that itself ? [ and AFAIR the BSD'ers don't like mkdir -p ;-) ] But great that you identified the

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
On Fri, Dec 03, 2010 at 04:04:10PM +0100, Miklos Vajna wrote: > I can reproduce this bug when I used --with-system-libs. A workaround is > to 'mkdir src' before 'make'. > > Trivial fix for the bootstrap repo attached, does it look sane? Ok. What about the first one, with dmake/dmake? # gmake gmak

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Miklos Vajna
On Fri, Dec 03, 2010 at 03:50:17PM +0100, Thomas Klausner wrote: > > > I looked at the Makefile target and saw that it wants to run > > > ./bootstrap, so I did that manually; after a successful finish, gmake > > > now dies with: > > > gmake: *** [src/downloaded] Error 1 > > > > Ditto. I can

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Thomas Klausner
On Fri, Dec 03, 2010 at 02:49:56PM +, Michael Meeks wrote: > > autogen runs through fine, but then gmake says: > > gmake: *** [dmake/dmake] Error 1 > > Really - a bit more context of how it dies (the last dozen lines or so) > would be more helpful :-) Yes, but there isn't more context,

Re: [Libreoffice] new bootstrap: quick stop

2010-12-03 Thread Michael Meeks
On Fri, 2010-12-03 at 15:34 +0100, Thomas Klausner wrote: > I tried migrating to the new build structure, but that didn't work and > I didn't want to investigate, so I checked out anew per instructions > from http://wiki.documentfoundation.org/Development/Native_Build :-) > autogen runs