From unknown Thu Jun 19 12:16:41 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#16827 <16827@debbugs.gnu.org> To: bug#16827 <16827@debbugs.gnu.org> Subject: Status: confusion in automake 1.14.1 Reply-To: bug#16827 <16827@debbugs.gnu.org> Date: Thu, 19 Jun 2025 19:16:41 +0000 retitle 16827 confusion in automake 1.14.1 reassign 16827 automake submitter 16827 Aharon Robbins severity 16827 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 20 12:57:36 2014 Received: (at submit) by debbugs.gnu.org; 20 Feb 2014 17:57:36 +0000 Received: from localhost ([127.0.0.1]:33902 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WGXsN-0003MT-QC for submit@debbugs.gnu.org; Thu, 20 Feb 2014 12:57:36 -0500 Received: from eggs.gnu.org ([208.118.235.92]:41257) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WGXsM-0003MF-9E for submit@debbugs.gnu.org; Thu, 20 Feb 2014 12:57:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WGXs9-0003at-UP for submit@debbugs.gnu.org; Thu, 20 Feb 2014 12:57:28 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_MANY_HDRS_LCASE autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:52056) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGXs9-0003an-SD for submit@debbugs.gnu.org; Thu, 20 Feb 2014 12:57:21 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42927) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGXs3-0004Na-Sb for bug-automake@gnu.org; Thu, 20 Feb 2014 12:57:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WGXrx-0003Yb-Oa for bug-automake@gnu.org; Thu, 20 Feb 2014 12:57:15 -0500 Received: from mxout4.netvision.net.il ([194.90.9.27]:39671) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGXrx-0003Vj-H9 for bug-automake@gnu.org; Thu, 20 Feb 2014 12:57:09 -0500 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from skeeve.com ([93.172.51.72]) by mxout4.netvision.net.il (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTP id <0N1B00060373QD60@mxout4.netvision.net.il> for bug-automake@gnu.org; Thu, 20 Feb 2014 19:57:03 +0200 (IST) Received: from skeeve.com (skeeve.com [127.0.0.1]) by skeeve.com (8.14.4/8.14.4/Debian-2ubuntu2.1) with ESMTP id s1KHv2WB019791 for ; Thu, 20 Feb 2014 19:57:02 +0200 Received: (from arnold@localhost) by skeeve.com (8.14.4/8.14.4/Submit) id s1KHv2rk019790 for bug-automake@gnu.org; Thu, 20 Feb 2014 19:57:02 +0200 From: Aharon Robbins Message-id: <201402201757.s1KHv2rk019790@skeeve.com> Date: Thu, 20 Feb 2014 19:57:02 +0200 To: bug-automake@gnu.org Subject: confusion in automake 1.14.1 User-Agent: Heirloom mailx 12.5 6/20/10 X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hello. Doing a dry run of moving to automake 1.14.1, I noticed the following "improvements" in the generated Makefile.in: diff --git a/Makefile.in b/Makefile.in index fe921ad..1567a77 100644 --- a/Makefile.in +++ b/Makefile.in @@ -905,10 +905,16 @@ dist-xz: distdir $(am__post_remove_distdir) dist-tarZ: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) The messages are swapped. The warning for compress occurs on the creation of the shar archive, and the warning on the shar archive occurs on compression with compress. Methinks someone was working too late at night... :-) Thanks, Arnold From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 21 10:00:13 2014 Received: (at 16827-done) by debbugs.gnu.org; 21 Apr 2014 14:00:13 +0000 Received: from localhost ([127.0.0.1]:54203 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WcElY-0003hA-Dr for submit@debbugs.gnu.org; Mon, 21 Apr 2014 10:00:13 -0400 Received: from mail-ee0-f49.google.com ([74.125.83.49]:64725) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WcElQ-0003g7-St; Mon, 21 Apr 2014 10:00:10 -0400 Received: by mail-ee0-f49.google.com with SMTP id c41so3637473eek.8 for ; Mon, 21 Apr 2014 07:00:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=zIg+jziI3hlTN9NjuVCn5OGlQFGRezfBfdUzz3/ZPQI=; b=Zw9BsCssLurCMDKS8hib4pAaEcFS9tBX9ZE+TyhPoeMjDD6KO5C9Hzf5CBYq/7CLNN R4qEFvjYZfVkdhBgZCS9jLn9DRQ4s3uKHu6Q7hMDBrmQ8JbZERjXLgZBZKGtUWxi2Wyu 2mOPr4dFhNDkNJHZHmgPFU/FlZ5le8oNwBNJ0iatk5+ZTLzxYzNqBVEvMvLl1C3AJOGY Eyf/bxrVO20vMzoD9Qw34KjEP9bSNIMYZFPgWwWXYu3d21Fv3G/9f2H9HUg6QnSDghKY KnGMAPfOoKF/VpQWqASQ65gzwtVkmNnxRVh6KnV2+j0rbgnr7C8KhBd7f+MdFlVg71G3 506g== X-Received: by 10.15.53.69 with SMTP id q45mr47665943eew.22.1398088803662; Mon, 21 Apr 2014 07:00:03 -0700 (PDT) Received: from localhost.localdomain (host66-50-dynamic.58-82-r.retail.telecomitalia.it. [82.58.50.66]) by mx.google.com with ESMTPSA id x46sm103269250een.17.2014.04.21.07.00.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 21 Apr 2014 07:00:02 -0700 (PDT) From: Stefano Lattarini To: automake-patches@gnu.org Subject: [PATCH] Typofixes in warning messages and manual Date: Mon, 21 Apr 2014 14:59:50 +0100 Message-Id: <3a851d6432589782cf47746443da922db3bf280a.1398087223.git.stefano.lattarini@gmail.com> X-Mailer: git-send-email 1.9.1 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 16827-done Cc: rrt@sc3d.org, 16997-done@debbugs.gnu.org, arnold@skeeve.com, 16827-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Fixes automake bug#16827 and bug#16997. Signed-off-by: Stefano Lattarini --- NEWS | 3 +++ THANKS | 1 + doc/automake.texi | 2 +- lib/am/distdir.am | 8 ++++---- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index c863f0e..9fbd3ca 100644 --- a/NEWS +++ b/NEWS @@ -102,6 +102,9 @@ New in 1.15: - The user can now extend the special .PRECIOUS target, the same way he could already do with the .MAKE .and .PHONY targets. + - Fixed confusing typos in the manual and in some warning messages + (automake bug#16827 and bug#16997). + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/THANKS b/THANKS index 58dac98..550b565 100644 --- a/THANKS +++ b/THANKS @@ -6,6 +6,7 @@ Adam J. Richter adam@yggdrasil.com Adam Mercer ramercer@gmail.com Adam Sampson ats@offog.org Adrian Bunk bunk@fs.tum.de +Aharon Robbins arnold@skeeve.com Akim Demaille akim@gnu.org Alan Modra amodra@bigpond.net.au Alex Hornby alex@anvil.co.uk diff --git a/doc/automake.texi b/doc/automake.texi index d9083a0..8b92e1c 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -9144,7 +9144,7 @@ and @samp{./wrapper-script -d baz} to produce @file{foo.log}, as a side-effect. It's important to note that, differently from what we've seen for the -serial test harness (@pxref{Parallel Test Harness}), the +serial test harness (@pxref{Serial Test Harness}), the @code{AM_TESTS_ENVIRONMENT} and @code{TESTS_ENVIRONMENT} variables @emph{cannot} be use to define a custom test runner; the @code{LOG_COMPILER} and @code{LOG_FLAGS} (or their extension-specific diff --git a/lib/am/distdir.am b/lib/am/distdir.am index a8ad63c..f26a857 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -339,8 +339,8 @@ dist-xz: distdir ?COMPRESS?DIST_ARCHIVES += $(distdir).tar.Z .PHONY: dist-tarZ dist-tarZ: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) @@ -348,8 +348,8 @@ dist-tarZ: distdir ?SHAR?DIST_ARCHIVES += $(distdir).shar.gz .PHONY: dist-shar dist-shar: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) -- 1.9.1 From unknown Thu Jun 19 12:16:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 20 May 2014 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator