Received: (at 11029) by debbugs.gnu.org; 19 Mar 2012 09:35:42 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Mar 19 05:35:42 2012 Received: from localhost ([127.0.0.1]:56462 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1S9Z09-0000Ud-Qv for submit <at> debbugs.gnu.org; Mon, 19 Mar 2012 05:35:42 -0400 Received: from mail.lysator.liu.se ([130.236.254.3]:41230) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <peda@HIDDEN>) id 1S9Z07-0000UV-PN for 11029 <at> debbugs.gnu.org; Mon, 19 Mar 2012 05:35:41 -0400 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id ECE7140004; Mon, 19 Mar 2012 10:05:09 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 9B36D40003; Mon, 19 Mar 2012 10:05:09 +0100 (CET) Message-ID: <4F66F6C7.4040700@HIDDEN> Date: Mon, 19 Mar 2012 10:05:11 +0100 From: Peter Rosin <peda@HIDDEN> User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: Peter O'Gorman <peter@HIDDEN> Subject: Re: bug#11029: bootstrap problems References: <4F63B0FD.9040300@HIDDEN> <4F640A9E.4040406@HIDDEN> <4F66F2CB.1030807@HIDDEN> In-Reply-To: <4F66F2CB.1030807@HIDDEN> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 11029 Cc: 11029 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Sender: debbugs-submit-bounces <at> debbugs.gnu.org Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org X-Spam-Score: -1.9 (-) Peter Rosin skrev 2012-03-19 09:48: > Peter O'Gorman skrev 2012-03-17 04:53: >> On 03/16/2012 04:30 PM, Peter Rosin wrote: >>> 2. Automake didn't like that ChangeLog was missing -> "touch ChangeLog" >>> >> >> I had a look at this, bootstrap is supposed to add a dummy ChangeLog for this, but does not, depending upon what bs_echo got set to. >> >> func_ifcontains has this: >> # The embedded echo is to squash whitespace before globbing. >> _G_wslist=`$bs_echo " "$1" "` >> _G_member=$2 >> _G_yes_cmd=$3 >> _G_no_cmd=${4-":"} >> >> case $_G_wslist in >> *" $_G_member "*) >> >> and is called like this: >> func_ifcontains ' >> announce-gen >> do-release-commit-and-tag >> gendocs >> git-version-gen >> gitlog-to-changelog >> gnu-web-doc-update >> gnupload >> maintainer-makefile >> readme-release >> ' gitlog-to-changelog func_ensure_changelog >> >> If bs_echo is printf '%s\n' then the embedded newlines in $_G_wslist do not get eliminated by the `$bs_echo " "$1" "` and " gitlog-to-changelog " (with those spaces on both sides) is not in the string, so no ChangeLog is created. >> >> This function doesn't appear to be part of gnulib yet, and I'm not sure how best to fix it. >> >> Changing $bs_echo to 'echo' should work, so should using set foo $1; shift (after assigning $2,3 and 4) and then assigning _G_wslist=" $@ ". >> >> I'll look to see how we eliminate spaces and newlines elsewhere in libtool and use the same idiom. > > Something like this also works: > > diff --git a/bootstrap b/bootstrap > index 7b26d00..21d2268 100755 > --- a/bootstrap > +++ b/bootstrap > @@ -1803,10 +1803,12 @@ func_ifcontains () > _G_member=$2 > _G_yes_cmd=$3 > _G_no_cmd=${4-":"} > + nl=' > +' > > case $_G_wslist in > - *" $_G_member "*) > - eval "$_G_yes_cmd" > + *[\ $nl]$_G_member[\ $nl]*) > + eval "$_G_yes_cmd" > _G_status=$? > ;; > *) > > It fixes the common case when bs_echo is printf '%s\n' at least. But it doesn't > fix the real bug of course (feeding multiple args to bs_echo). Oh crap, I forgot the part that made me send any response at all... I.e. I think the standard way to deal with this in libtool is to use $NL2SP. To make up for failing to add that bit, I'm providing a patch as well... diff --git a/bootstrap b/bootstrap index 7b26d00..d118109 100755 --- a/bootstrap +++ b/bootstrap @@ -206,6 +206,17 @@ copy=false # "auto". vc_ignore= +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + bs_SP2NL='tr \040 \012' + bs_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + bs_SP2NL='tr \100 \n' + bs_NL2SP='tr \r\n \100\100' + ;; +esac ## ------------------- ## ## Hookable functions. ## @@ -1799,14 +1810,14 @@ func_ifcontains () $debug_cmd # The embedded echo is to squash whitespace before globbing. - _G_wslist=`$bs_echo " "$1" "` + _G_wslist=`$bs_echo " $1 " | $bs_NL2SP` _G_member=$2 _G_yes_cmd=$3 _G_no_cmd=${4-":"} case $_G_wslist in *" $_G_member "*) - eval "$_G_yes_cmd" + eval "$_G_yes_cmd" _G_status=$? ;; *) Cheers, Peter
bug-libtool@HIDDEN
:bug#11029
; Package libtool
.
Full text available.Received: (at 11029) by debbugs.gnu.org; 19 Mar 2012 09:19:00 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Mar 19 05:19:00 2012 Received: from localhost ([127.0.0.1]:56449 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1S9Yjz-0008ML-Tq for submit <at> debbugs.gnu.org; Mon, 19 Mar 2012 05:19:00 -0400 Received: from mail.lysator.liu.se ([130.236.254.3]:56416) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <peda@HIDDEN>) id 1S9Yjl-0008Lo-9N for 11029 <at> debbugs.gnu.org; Mon, 19 Mar 2012 05:18:57 -0400 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 1519340004; Mon, 19 Mar 2012 09:48:14 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id C80B040003; Mon, 19 Mar 2012 09:48:13 +0100 (CET) Message-ID: <4F66F2CB.1030807@HIDDEN> Date: Mon, 19 Mar 2012 09:48:11 +0100 From: Peter Rosin <peda@HIDDEN> User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: Peter O'Gorman <peter@HIDDEN> Subject: Re: bug#11029: bootstrap problems References: <4F63B0FD.9040300@HIDDEN> <4F640A9E.4040406@HIDDEN> In-Reply-To: <4F640A9E.4040406@HIDDEN> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 11029 Cc: 11029 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Sender: debbugs-submit-bounces <at> debbugs.gnu.org Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org X-Spam-Score: -1.9 (-) Peter O'Gorman skrev 2012-03-17 04:53: > On 03/16/2012 04:30 PM, Peter Rosin wrote: >> 2. Automake didn't like that ChangeLog was missing -> "touch ChangeLog" >> > > I had a look at this, bootstrap is supposed to add a dummy ChangeLog for this, but does not, depending upon what bs_echo got set to. > > func_ifcontains has this: > # The embedded echo is to squash whitespace before globbing. > _G_wslist=`$bs_echo " "$1" "` > _G_member=$2 > _G_yes_cmd=$3 > _G_no_cmd=${4-":"} > > case $_G_wslist in > *" $_G_member "*) > > and is called like this: > func_ifcontains ' > announce-gen > do-release-commit-and-tag > gendocs > git-version-gen > gitlog-to-changelog > gnu-web-doc-update > gnupload > maintainer-makefile > readme-release > ' gitlog-to-changelog func_ensure_changelog > > If bs_echo is printf '%s\n' then the embedded newlines in $_G_wslist do not get eliminated by the `$bs_echo " "$1" "` and " gitlog-to-changelog " (with those spaces on both sides) is not in the string, so no ChangeLog is created. > > This function doesn't appear to be part of gnulib yet, and I'm not sure how best to fix it. > > Changing $bs_echo to 'echo' should work, so should using set foo $1; shift (after assigning $2,3 and 4) and then assigning _G_wslist=" $@ ". > > I'll look to see how we eliminate spaces and newlines elsewhere in libtool and use the same idiom. Something like this also works: diff --git a/bootstrap b/bootstrap index 7b26d00..21d2268 100755 --- a/bootstrap +++ b/bootstrap @@ -1803,10 +1803,12 @@ func_ifcontains () _G_member=$2 _G_yes_cmd=$3 _G_no_cmd=${4-":"} + nl=' +' case $_G_wslist in - *" $_G_member "*) - eval "$_G_yes_cmd" + *[\ $nl]$_G_member[\ $nl]*) + eval "$_G_yes_cmd" _G_status=$? ;; *) It fixes the common case when bs_echo is printf '%s\n' at least. But it doesn't fix the real bug of course (feeding multiple args to bs_echo). Cheers, Peter
bug-libtool@HIDDEN
:bug#11029
; Package libtool
.
Full text available.Received: (at 11029) by debbugs.gnu.org; 17 Mar 2012 19:50:10 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 17 15:50:09 2012 Received: from localhost ([127.0.0.1]:54980 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1S8zdh-0005Ic-7J for submit <at> debbugs.gnu.org; Sat, 17 Mar 2012 15:50:09 -0400 Received: from mail.lysator.liu.se ([130.236.254.3]:54872) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <peda@HIDDEN>) id 1S8zdd-0005IP-MB for 11029 <at> debbugs.gnu.org; Sat, 17 Mar 2012 15:50:08 -0400 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id F1C5E4001C; Sat, 17 Mar 2012 20:19:42 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 986A840019; Sat, 17 Mar 2012 20:19:42 +0100 (CET) Message-ID: <4F64E3D8.7090208@HIDDEN> Date: Sat, 17 Mar 2012 20:19:52 +0100 From: Peter Rosin <peda@HIDDEN> User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: Peter O'Gorman <peter@HIDDEN> Subject: Re: bug#11029: bootstrap problems References: <4F63B0FD.9040300@HIDDEN> <4F640A9E.4040406@HIDDEN> In-Reply-To: <4F640A9E.4040406@HIDDEN> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 11029 Cc: 11029 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Sender: debbugs-submit-bounces <at> debbugs.gnu.org Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org X-Spam-Score: -1.9 (-) Peter O'Gorman skrev 2012-03-17 04:53: > On 03/16/2012 04:30 PM, Peter Rosin wrote: >> I just bootstrapped a git-checkout, but I had to manually cludge >> around a couple of problems. Namely: >> >> 1. gl/top/README-release.diff didn't apply -> "rm gl/top/README-release.diff" > > Please do this as git rm and commit. Ok, done. *snip* revealing analysis of the ChangeLog situation. Cheers, Peter
bug-libtool@HIDDEN
:bug#11029
; Package libtool
.
Full text available.Received: (at 11029) by debbugs.gnu.org; 17 Mar 2012 04:23:35 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 17 00:23:35 2012 Received: from localhost ([127.0.0.1]:54185 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1S8lB0-0006tk-Jn for submit <at> debbugs.gnu.org; Sat, 17 Mar 2012 00:23:35 -0400 Received: from pogma.xen.prgmr.com ([68.68.97.8]:50086) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <peter@HIDDEN>) id 1S8lAo-0006tS-1m for 11029 <at> debbugs.gnu.org; Sat, 17 Mar 2012 00:23:32 -0400 Message-ID: <4F640A9E.4040406@HIDDEN> X-DKIM: Sendmail DKIM Filter v2.8.3 pogma.xen.prgmr.com 57FE7BF5B6 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=pogma.com; s=pogmail; t=1331956383; bh=6F08Hj5HTREoW1MieQJ9aKcrxC4cRT9C49q8fBFV6qM=; h=Date:From:MIME-Version:To:CC:Subject:References:In-Reply-To: Content-Type:Content-Transfer-Encoding; b=nLg+3Ba/usVPmUfkVFLGIL61FN/nG0scUhAfKPYPLXFfQKb16gDLVcfHEubXx8C5U xI5uWbEi0Jjlug7Y3hBim12q0PPoHh0NbpxFCqSbK4GJi5wOL6q9XDZMlmva6rjC/w irrfw327U3sS5nY6utKmIdPcK4TFDdkeBqX3XM4k= Date: Fri, 16 Mar 2012 22:53:02 -0500 From: Peter O'Gorman <peter@HIDDEN> User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.22) Gecko/20110906 Fedora/3.1.14-1.fc14 Thunderbird/3.1.14 MIME-Version: 1.0 To: Peter Rosin <peda@HIDDEN> Subject: Re: bug#11029: bootstrap problems References: <4F63B0FD.9040300@HIDDEN> In-Reply-To: <4F63B0FD.9040300@HIDDEN> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 11029 Cc: 11029 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Sender: debbugs-submit-bounces <at> debbugs.gnu.org Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org X-Spam-Score: -1.9 (-) Hi Peter, On 03/16/2012 04:30 PM, Peter Rosin wrote: > Hi! > > I just bootstrapped a git-checkout, but I had to manually cludge > around a couple of problems. Namely: > > 1. gl/top/README-release.diff didn't apply -> "rm gl/top/README-release.diff" Please do this as git rm and commit. > 2. Automake didn't like that ChangeLog was missing -> "touch ChangeLog" > I had a look at this, bootstrap is supposed to add a dummy ChangeLog for this, but does not, depending upon what bs_echo got set to. func_ifcontains has this: # The embedded echo is to squash whitespace before globbing. _G_wslist=`$bs_echo " "$1" "` _G_member=$2 _G_yes_cmd=$3 _G_no_cmd=${4-":"} case $_G_wslist in *" $_G_member "*) and is called like this: func_ifcontains ' announce-gen do-release-commit-and-tag gendocs git-version-gen gitlog-to-changelog gnu-web-doc-update gnupload maintainer-makefile readme-release ' gitlog-to-changelog func_ensure_changelog If bs_echo is printf '%s\n' then the embedded newlines in $_G_wslist do not get eliminated by the `$bs_echo " "$1" "` and " gitlog-to-changelog " (with those spaces on both sides) is not in the string, so no ChangeLog is created. This function doesn't appear to be part of gnulib yet, and I'm not sure how best to fix it. Changing $bs_echo to 'echo' should work, so should using set foo $1; shift (after assigning $2,3 and 4) and then assigning _G_wslist=" $@ ". I'll look to see how we eliminate spaces and newlines elsewhere in libtool and use the same idiom. Peter
bug-libtool@HIDDEN
:bug#11029
; Package libtool
.
Full text available.Received: (at submit) by debbugs.gnu.org; 16 Mar 2012 22:01:19 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Mar 16 18:01:19 2012 Received: from localhost ([127.0.0.1]:53936 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1S8fD5-0005Ur-Gg for submit <at> debbugs.gnu.org; Fri, 16 Mar 2012 18:01:19 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40737) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from <peda@HIDDEN>) id 1S8fD2-0005Uj-Ro for submit <at> debbugs.gnu.org; Fri, 16 Mar 2012 18:01:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <peda@HIDDEN>) id 1S8ejP-0003il-UG for submit <at> debbugs.gnu.org; Fri, 16 Mar 2012 17:30:58 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:59196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <peda@HIDDEN>) id 1S8ejP-0003ia-RE for submit <at> debbugs.gnu.org; Fri, 16 Mar 2012 17:30:39 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43744) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <peda@HIDDEN>) id 1S8ejK-0003rh-EY for bug-libtool@HIDDEN; Fri, 16 Mar 2012 17:30:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <peda@HIDDEN>) id 1S8ejI-0003aL-NC for bug-libtool@HIDDEN; Fri, 16 Mar 2012 17:30:33 -0400 Received: from mail.lysator.liu.se ([130.236.254.3]:58175) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <peda@HIDDEN>) id 1S8ejI-0003Zw-GJ for bug-libtool@HIDDEN; Fri, 16 Mar 2012 17:30:32 -0400 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 47DB640009 for <bug-libtool@HIDDEN>; Fri, 16 Mar 2012 22:30:29 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 2F29A40006 for <bug-libtool@HIDDEN>; Fri, 16 Mar 2012 22:30:29 +0100 (CET) Message-ID: <4F63B0FD.9040300@HIDDEN> Date: Fri, 16 Mar 2012 22:30:37 +0100 From: Peter Rosin <peda@HIDDEN> User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: bug-libtool@HIDDEN Subject: bootstrap problems Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.1 (------) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Sender: debbugs-submit-bounces <at> debbugs.gnu.org Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org X-Spam-Score: -6.1 (------) Hi! I just bootstrapped a git-checkout, but I had to manually cludge around a couple of problems. Namely: 1. gl/top/README-release.diff didn't apply -> "rm gl/top/README-release.diff" 2. Automake didn't like that ChangeLog was missing -> "touch ChangeLog" After that, ./bootstrap completed. Cheers, Peter
Peter Rosin <peda@HIDDEN>
:bug-libtool@HIDDEN
.
Full text available.bug-libtool@HIDDEN
:bug#11029
; Package libtool
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.