X-Recipient: archive-cygwin AT delorie DOT com 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 Message-ID: <4EC26FB0.2070600@cwilson.fastmail.fm> Date: Tue, 15 Nov 2011 08:57:04 -0500 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 AT cygwin DOT 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 AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com 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