From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29817 invoked by alias); 10 Jul 2012 08:59:21 -0000 Received: (qmail 29797 invoked by uid 22791); 10 Jul 2012 08:59:21 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_NUMERIC_HELO,SPF_HELO_PASS,TW_YG,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from plane.gmane.org (HELO plane.gmane.org) (80.91.229.3) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 10 Jul 2012 08:59:08 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SoWHh-0000B1-6E for cygwin@cygwin.com; Tue, 10 Jul 2012 10:59:05 +0200 Received: from 217.10.60.85 ([217.10.60.85]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Jul 2012 10:59:05 +0200 Received: from Stromeko by 217.10.60.85 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Jul 2012 10:59:05 +0200 To: cygwin@cygwin.com From: Achim Gratz Subject: Re: [ANNOUNCEMENT] Updated: cygport-0.10.11-1 Date: Tue, 10 Jul 2012 08:59:00 -0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com X-SW-Source: 2012-07/txt/msg00134.txt.bz2 Yaakov (Cygwin/X users.sourceforge.net> writes: > * Split debuginfo subpackages are created automatically whenever > possible. Thank you. I suggest the following patch to greatly reduce the amount of temporary storage needed: diff -c src_postinst.cygpart.orig src_postinst.cygpart *** src_postinst.cygpart.orig 2012-07-04 07:49:54.000000000 +0200 --- src_postinst.cygpart 2012-07-10 10:53:25.748594900 +0200 *************** *** 929,935 **** dbg="/usr/lib/debug/${exe}.dbg"; dodir ${dbg%/*}; ! ${objdump} -dl ${exe} | grep /usr/src/debug | sed -e 's/:[0-9]*$//g' >> ${T}/.dbgsrc.lst; # --add-gnu-debuglink will fail if .gnu_debuglink section # already exists, e.g. binutils, which uses hardlinks, --- 929,935 ---- dbg="/usr/lib/debug/${exe}.dbg"; dodir ${dbg%/*}; ! ${objdump} -dl ${exe} | grep /usr/src/debug | sed -e 's/:[0-9]*$//g' | uniq >> ${T}/.dbgsrc.lst; # --add-gnu-debuglink will fail if .gnu_debuglink section # already exists, e.g. binutils, which uses hardlinks, Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple