Re: [PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Eric Blake
On 10/05/2010 09:28 AM, Pádraig Brady wrote: On 05/10/10 15:22, Eric Blake wrote: On 10/05/2010 08:13 AM, Eric Blake wrote: @@ -351,7 +351,7 @@ check_versions() { app=libtoolize fi # Honor $APP variables ($TAR, $AUTOCONF, etc.) -appvar=`echo $app | tr '[a-z]' '[A-Z]'`

Re: [PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Pádraig Brady
On 05/10/10 15:22, Eric Blake wrote: > On 10/05/2010 08:13 AM, Eric Blake wrote: >> @@ -351,7 +351,7 @@ check_versions() { >> app=libtoolize >> fi >> # Honor $APP variables ($TAR, $AUTOCONF, etc.) >> -appvar=`echo $app | tr '[a-z]' '[A-Z]'` >> +appvar=`echo $app | tr '-a

Re: [PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Eric Blake
On 10/05/2010 09:06 AM, Justin Clift wrote: I'd suspect that the updated .gnulib wasn't being used, Did you 'cp .gnulib/build-aux/bootstrap .'? Remember, bootstrap is the one file that must be manually copied into the destination project, to break the chicken-and-egg problem of how does boo

Re: [PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Justin Clift
On 10/06/2010 01:22 AM, Eric Blake wrote: On 10/05/2010 08:13 AM, Eric Blake wrote: @@ -351,7 +351,7 @@ check_versions() { app=libtoolize fi # Honor $APP variables ($TAR, $AUTOCONF, etc.) - appvar=`echo $app | tr '[a-z]' '[A-Z]'` + appvar=`echo $app | tr '-a-z' '_A-Z'` Actually, 'tr -- -a-z _A

Re: [PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Eric Blake
On 10/05/2010 08:13 AM, Eric Blake wrote: @@ -351,7 +351,7 @@ check_versions() { app=libtoolize fi # Honor $APP variables ($TAR, $AUTOCONF, etc.) -appvar=`echo $app | tr '[a-z]' '[A-Z]'` +appvar=`echo $app | tr '-a-z' '_A-Z'` Actually, 'tr -- -a-z _A-Z' is not univer

[PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Eric Blake
* build-aux/bootstrap (found_aux_dir): Also transliterate - in prerequisite name. (print_versions): Be robust to any \ in $buildreq. Avoid listing prerequisites that were already found, to avoid confusion. Signed-off-by: Eric Blake --- > Hmm, looking at this further, I note that bootstrap is al

[PATCH] bootstrap: work with pkg-config

2010-10-05 Thread Eric Blake
* build-aux/bootstrap (found_aux_dir): Also transliterate - in prerequisite name. (print_versions): Be robust to any \ in $buildreq. Signed-off-by: Eric Blake --- Sorry for Thunderbird's bug corrupting the formatting of Justin's mail. > Something like: > > *