X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org X-Authority-Analysis: v=1.0 c=1 a=w_pzkKWiAAAA:8 a=xe8BsctaAAAA:8 a=inlgkV7VYLBRC_z-MS4A:9 a=tH4VAB0nSDMh54xoiCEUilw4g3IA:4 a=eDFNAWYWrCwA:10 a=rPt6xJ-oxjAA:10 a=Pq7wlG-Gy4L98rvUX6wA:9 a=oKSzZBdXFDnMcI5cLYcA:7 a=Nl-xipP7ue4TXbwGqwo4QjRPLwIA:4 Message-ID: <481C6B90.3060801@byu.net> Date: Sat, 03 May 2008 07:41:36 -0600 From: Eric Blake User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080421 Thunderbird/2.0.0.14 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: "Yaakov (Cygwin Ports)" , cygwin AT cygwin DOT com Subject: cygport 0.3.9 bug Content-Type: multipart/mixed; boundary="------------030308000705080302050009" X-IsSubscribed: yes 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 --------------030308000705080302050009 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I've reported this before against earlier versions [1], but the bug is still present in 0.3.9, and it breaks packaging of bash. Basically, cygport should NOT ignore patches to aclocal.m4 in packages that do not use automake, since in that case, it is a hand-maintained file and not generated. [1] http://cygwin.com/ml/cygwin/2007-03/msg00613.html - -- Don't work too hard, make some time for fun as well! Eric Blake ebb9 AT byu DOT net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkgca5AACgkQ84KuGfSFAYDKVQCgpRag96xh/w1s6Sx15wOWROVn 4MsAnRYOUPph2QUCpo65Da/olhvHRVoR =65jz -----END PGP SIGNATURE----- --------------030308000705080302050009 Content-Type: text/plain; name="cygport.patch3" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cygport.patch3" --- /bin/cygport.orig 2008-05-03 07:34:58.092250000 -0600 +++ /bin/cygport 2008-05-03 07:40:28.951625000 -0600 @@ -1732,7 +1732,7 @@ local difflevel; local exclude; - default_excludes="CYGWIN-PATCHES aclocal.m4* autom4te.cache \ + default_excludes="CYGWIN-PATCHES autom4te.cache \ config.cache config.log config.status config.h config.h.in ABOUT-NLS Makefile.in.in Makevars.template *SlackBuild* *.egg-info \ *.class *.pyc *.mo *.gmo *.orig *.rej *.spec *.temp *~ *.stackdump"; @@ -1751,12 +1751,12 @@ *) default_excludes+=" config.rpath" ;; esac - # exclude Makefile.in only if using automake + # exclude aclocal.m4 and Makefile.in only if using automake for mf in Makefile GNUmakefile makefile do if [ -f ${S}/${mf}.am ] then - default_excludes+=" ${mf}.in"; + default_excludes+=" ${mf}.in aclocal.m4*"; fi done --------------030308000705080302050009 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------030308000705080302050009--