From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25183 invoked by alias); 15 Nov 2011 13:57:55 -0000 Received: (qmail 25169 invoked by uid 22791); 15 Nov 2011 13:57:53 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,RCVD_IN_DNSWL_LOW,SARE_LWSHORTT,TW_YG X-Spam-Check-By: sourceware.org Received: from out2.smtp.messagingengine.com (HELO out2.smtp.messagingengine.com) (66.111.4.26) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 Nov 2011 13:57:20 +0000 Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id D47CC20E10 for ; Tue, 15 Nov 2011 08:57:19 -0500 (EST) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute6.internal (MEProxy); Tue, 15 Nov 2011 08:57:19 -0500 Received: from [192.168.1.3] (50-88-210-98.res.bhn.net [50.88.210.98]) by mail.messagingengine.com (Postfix) with ESMTPSA id 8A33C4824F8; Tue, 15 Nov 2011 08:57:19 -0500 (EST) Message-ID: <4EC26FB0.2070600@cwilson.fastmail.fm> Date: Tue, 15 Nov 2011 13:57:00 -0000 From: Charles Wilson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.23) Gecko/20090812 Thunderbird/2.0.0.23 Mnenhy/0.7.6.666 MIME-Version: 1.0 To: cygwin@cygwin.com Subject: Re: autoconf packaging error References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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: 2011-11/txt/msg00241.txt.bz2 On 11/15/2011 5:06 AM, Csaba Raduly wrote: > Hi all, > There seems to be a packaging error in autoconf (autoconf2.5-2.68-1 > according to cygcheck -f /usr/share/man/man1/autoconf-2.68.1.gz). > The shorter names for the man pages point to non-existent files: > > The symlinks don't appear in the output of cygcheck -l autoconf2.5; I > suspect the post-install script. Yes, there's a bug in /etc/postinstall/autoconf2.5.sh: #!/bin/bash -e # make unversion man pages pushd /usr/share/man/man1 >/dev/null 2>&1 for fn in autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames do rm -f ${fn}.1.gz 2>/dev/null || /bin/true - ln -fs ${fn}-2.67.1.gz ${fn}.1.gz 2>/dev/null || /bin/true + ln -fs ${fn}-2.68.1.gz ${fn}.1.gz 2>/dev/null || /bin/true done popd >/dev/null 2>&1 For now, the short term workaround is to make the indicated change, and re-run the script manually (perhaps in an elevated shell). -- Chuck -- 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