-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The check for config_h in cygautoreconf does not work when the line requests a template by a different name, as is the case with coreutils 6.4:
$ grep CONFIG_HEADERS coreutils-6.4/configure.ac AC_CONFIG_HEADERS([lib/config.h:lib/config.hin]) $ cygport coreutils-6.4.1 build touch: cannot touch `./lib/config.h:lib/config.hin.in': No such file or directory This patch solves the issue. - --- /bin/cygport.orig 2006-10-23 22:29:18.859375000 -0600 +++ /bin/cygport 2006-10-23 22:43:03.656250000 -0600 @@ -697,7 +697,7 @@ for d in . ${ac_subdirs} do - - config_h="$(grep 'A[CM]_CONFIG_HEADERS*' ${d}/${configure_ac} | sed -e 's!A[CM]_CONFIG_HEADERS*(\[*\(.*\))!\1!g' -e 's!\]*!!g')"; + config_h="$(grep 'A[CM]_CONFIG_HEADERS*' ${d}/${configure_ac} | sed -e 's!A[CM]_CONFIG_HEADERS*(\[*\(.*\))!\1!g' -e 's!\]*!!g' -e 's!:.*!!')"; if [ -n "${config_h}" ] then - -- Life is short - so eat dessert first! Eric Blake [EMAIL PROTECTED] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFPZvF84KuGfSFAYARApAQAJ9SopQTuRLxfsFxOPEUvf9CRCTlGQCeJEa6 An2G9Qm3y3R5U89vMrUOPFM= =9xIK -----END PGP SIGNATURE----- -- 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/