| delorie.com/archives/browse.cgi | search |
| 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 <cygwin AT cwilson DOT fastmail DOT fm> |
| 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: | <CAEhDDbDCx3MPN-RZZ9Eo1_EWr2mbdxx9_qKbgmwzYQ0Rd4G+PA AT mail DOT gmail DOT com> |
| In-Reply-To: | <CAEhDDbDCx3MPN-RZZ9Eo1_EWr2mbdxx9_qKbgmwzYQ0Rd4G+PA@mail.gmail.com> |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| 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
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |