You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(8) |
Feb
(2) |
Mar
|
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(13) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Hai Z. <ha...@gm...> - 2006-01-19 21:29:08
|
Did the patch work for you? -- Zaar |
From: Hai Z. <ha...@gm...> - 2006-01-15 08:38:23
|
Hi! On 1/11/06, Dick Marinus <dic...@ch...> wrote: > Op ma, 09-01-2006 te 20:34 -0800, schreef Hai Zaar: > > + [[ "$(DESTDIR)" =3D=3D "" ]] || $(sbindir)/ldbashconfig > This isn't right is it? It should be: > [[ "$(DESTDIR)" !=3D "" ]] || $(sbindir)/ldbashconfig > or > [[ "$(DESTDIR)" =3D=3D "" ]] && $(sbindir)/ldbashconfig Ok, I want to do the following: "If DESTDIR in _not_ empty - run ldbashconf= ig" So there is an error there. The correct line should be: [[ "$(DESTDIR)" =3D=3D "" ]] && $(sbindir)/ldbashconfig || : Note the '|| :' in the end. That is why you are getting an error: '[[ "/var/tmp/portage/libbash-0.9.9a/image/" =3D=3D "" ]]' condition is false, but this false is ok - we need to catch it with empy ':' command. P.S. How can one publish project in Gentoo Portage tree? > > I still get errors (Fouten ;-)): > [[ "/var/tmp/portage/libbash-0.9.9a/image/" =3D=3D "" ]] > && /usr/sbin/ldbashconfig > make[3]: *** [install-data-hook] Fout 1 > make[3]: Leaving directory > `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' > make[2]: *** [install-data-am] Fout 2 > make[2]: Leaving directory > `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' > make[1]: *** [install-am] Fout 2 > make[1]: Leaving directory > `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' > make: *** [install-recursive] Fout 1 > > greetings, > Dick > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.2 (GNU/Linux) > > iD8DBQBDxMIW6xLbhaCdQl8RAuyiAJ9W4qLncLaJB4GsAnu2zKuozgrqnQCg1l/t > pujiHBDJHc98+rLbKfKKhik=3D > =3DHzHJ > -----END PGP SIGNATURE----- > > > -- Zaar |
From: Dick M. <dic...@ch...> - 2006-01-11 08:30:27
|
Op ma, 09-01-2006 te 20:34 -0800, schreef Hai Zaar: > + [[ "$(DESTDIR)" =3D=3D "" ]] || $(sbindir)/ldbashconfig=20 This isn't right is it? It should be: [[ "$(DESTDIR)" !=3D "" ]] || $(sbindir)/ldbashconfig=20 or [[ "$(DESTDIR)" =3D=3D "" ]] && $(sbindir)/ldbashconfig=20 I still get errors (Fouten ;-)): [[ "/var/tmp/portage/libbash-0.9.9a/image/" =3D=3D "" ]] && /usr/sbin/ldbashconfig make[3]: *** [install-data-hook] Fout 1 make[3]: Leaving directory `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' make[2]: *** [install-data-am] Fout 2 make[2]: Leaving directory `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' make[1]: *** [install-am] Fout 2 make[1]: Leaving directory `/var/tmp/portage/libbash-0.9.9a/work/libbash-0.9.9a' make: *** [install-recursive] Fout 1 greetings, Dick |
From: Hai Z. <ha...@gm...> - 2006-01-09 13:27:42
|
Try the attached patch. It changes 'make install' to run ldbashconfig only when DESTDIR is _not_ set. Also various small changes to rpm spec have been made. Note, that you'll have to run autoreconf/configure after applying the patch= . Tell me if the fix is good, and I'll merge it upstream to 0.9.9b. On 1/8/06, Dick Marinus <dic...@ch...> wrote: > Hi, > > > make install for libbash calls ldbashconfig, which is bad in case > someone is building a package. > I've created the following patch to disable the install-data-hook: > --- libbash-0.9.9a-orig/Makefile.am 2006-01-07 12:32:54.000000000 > +0100 > +++ libbash-0.9.9a/Makefile.am 2006-01-07 12:33:04.000000000 +0100 > @@ -9,6 +9,6 @@ > # The tests should be here, so the make check output will look good > TESTS =3D tests/locks.sh > > -# Running ldbashconfig after installation > -install-data-hook: > - $(DESTDIR)/$(sbindir)/ldbashconfig > +## Running ldbashconfig after installation > +#install-data-hook: > +# $(DESTDIR)/$(sbindir)/ldbashconfig > > Could you please remove the install-data-hook or make it optional? > > Thanks, > Dick > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.2 (GNU/Linux) > > iD8DBQBDwXgZ6xLbhaCdQl8RAs0CAJ9rK1lH7uYeGN/EISPEJcY+v5Y/8ACbB4Mi > aKweFkuyMPHoZpuGSuJcQ2k=3D > =3Dw9h6 > -----END PGP SIGNATURE----- > > > -- Zaar |
From: Dick M. <dic...@ch...> - 2006-01-08 20:37:56
|
Hi, make install for libbash calls ldbashconfig, which is bad in case someone is building a package. I've created the following patch to disable the install-data-hook: --- libbash-0.9.9a-orig/Makefile.am 2006-01-07 12:32:54.000000000 +0100 +++ libbash-0.9.9a/Makefile.am 2006-01-07 12:33:04.000000000 +0100 @@ -9,6 +9,6 @@ # The tests should be here, so the make check output will look good TESTS =3D tests/locks.sh -# Running ldbashconfig after installation -install-data-hook: - $(DESTDIR)/$(sbindir)/ldbashconfig +## Running ldbashconfig after installation +#install-data-hook: +# $(DESTDIR)/$(sbindir)/ldbashconfig Could you please remove the install-data-hook or make it optional? Thanks, Dick |
From: Hai Z. <ha...@gm...> - 2005-08-31 18:31:50
|
Test message --=20 Zaar |