From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29107 invoked by alias); 28 Mar 2012 10:05:08 -0000 Received: (qmail 29086 invoked by uid 22791); 28 Mar 2012 10:05:07 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-bk0-f41.google.com (HELO mail-bk0-f41.google.com) (209.85.214.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 28 Mar 2012 10:04:53 +0000 Received: by bkwq16 with SMTP id q16so879814bkw.0 for ; Wed, 28 Mar 2012 03:04:52 -0700 (PDT) Received: by 10.204.130.1 with SMTP id q1mr7643897bks.70.1332929092113; Wed, 28 Mar 2012 03:04:52 -0700 (PDT) Received: from [87.2.95.126] (host126-95-dynamic.2-87-r.retail.telecomitalia.it. [87.2.95.126]) by mx.google.com with ESMTPS id t17sm5322708bke.6.2012.03.28.03.04.49 (version=SSLv3 cipher=OTHER); Wed, 28 Mar 2012 03:04:50 -0700 (PDT) Message-ID: <4F72E239.9010404@gmail.com> Date: Wed, 28 Mar 2012 10:05:00 -0000 From: Stefano Lattarini MIME-Version: 1.0 To: 11034@debbugs.gnu.org CC: binutils@sourceware.org, gdb@sourceware.org, gcc@gcc.gnu.org, Automake List Subject: Binutils, GDB, GCC and Automake's 'cygnus' option Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-03/txt/msg00077.txt.bz2 Hello. I see that binutils, GCC and GDB still use the Automake's 'cygnus' option in some of their makefiles: $ grep_cygnus() { > grep -r 'cygnus' . \ > | perl -ne '/(^|[^@])cygnus($|(:!\.com\b))/ and print' \ > | grep -v '^[^:]*/Makefile\.in:'; \ > } $ (cd ~/src/binutils && grep_cygnus) # BINUTILS ./bfd/doc/Makefile.am:AUTOMAKE_OPTIONS = 1.9 cygnus ./binutils/doc/Makefile.am:AUTOMAKE_OPTIONS = cygnus ./etc/configure.texi:AUTOMAKE_OPTIONS = cygnus ./gas/doc/Makefile.am:AUTOMAKE_OPTIONS = 1.8 cygnus $ (cd ~/src/gdb && grep_cygnus) # GDB ./bfd/doc/Makefile.am:AUTOMAKE_OPTIONS = 1.9 cygnus ./etc/configure.info: AUTOMAKE_OPTIONS = cygnus ./etc/configure.texi:AUTOMAKE_OPTIONS = cygnus $ (cd ~/src/gcc && grep_cygnus) # GCC ./zlib/Makefile.am:AUTOMAKE_OPTIONS = 1.8 cygnus But this option is going to be deprecated in Automake 1.12.1 and removed in Automake 1.13: I just wanted to give you this head-up so that you won't be unpleasantly surprised by the change. Note that the actual removal of the 'cygnus' option won't take place until Automake 1.13, which will at best be released five or six months from now (and probably later than that). Best regards, Stefano