From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Todd Newsgroups: gmane.lisp.guile.devel Subject: [patch] render-bugs relies on GNU find Date: Tue, 24 Aug 2004 21:57:07 -0500 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <73AC5862-F642-11D8-8679-000A95B4C7DC@mac.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 (Apple Message framework v619) Content-Type: multipart/mixed; boundary=Apple-Mail-5--868689300 X-Trace: sea.gmane.org 1093402649 5526 80.91.224.253 (25 Aug 2004 02:57:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 25 Aug 2004 02:57:29 +0000 (UTC) Cc: Richard Todd Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Aug 25 04:57:23 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BznyU-0001uO-00 for ; Wed, 25 Aug 2004 04:57:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bzo32-00028d-1f for guile-devel@m.gmane.org; Tue, 24 Aug 2004 23:02:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bzo2M-0001uu-Nr for guile-devel@gnu.org; Tue, 24 Aug 2004 23:01:22 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bzo2J-0001tz-Fl for guile-devel@gnu.org; Tue, 24 Aug 2004 23:01:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bzo2J-0001tX-8A for guile-devel@gnu.org; Tue, 24 Aug 2004 23:01:19 -0400 Original-Received: from [17.250.248.86] (helo=smtpout.mac.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BznxU-0006wv-BE for guile-devel@gnu.org; Tue, 24 Aug 2004 22:56:20 -0400 Original-Received: from mac.com (smtpin02-en2 [10.13.10.147]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id i7P2uJao025201 for ; Tue, 24 Aug 2004 19:56:19 -0700 (PDT) Original-Received: from [10.0.1.2] (97.157.171.66.subscriber.vzavenue.net [66.171.157.97]) (authenticated bits=0) by mac.com (Xserve/smtpin02/MantshX 4.0) with ESMTP id i7P2txK6029596 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Tue, 24 Aug 2004 19:56:07 -0700 (PDT) Original-To: guile-devel@gnu.org X-Mailer: Apple Mail (2.619) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:4036 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:4036 --Apple-Mail-5--868689300 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed On my Mac OS X setup, I don't have GNU find. render-bugs relies on the GNU find -printf extension, so autogen.sh fails when I run it. I realize it's not hard to just get GNU find, but with the attached patch, render-bugs should produce identical output and work on more systems. --Apple-Mail-5--868689300 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="render-bugs.patch" Content-Disposition: attachment; filename=render-bugs.patch Index: guile-scripts/render-bugs =================================================================== RCS file: /cvsroot/guile/guile/guile-scripts/render-bugs,v retrieving revision 1.3 diff -u -r1.3 render-bugs --- guile-scripts/render-bugs 19 Jul 2002 04:18:52 -0000 1.3 +++ guile-scripts/render-bugs 25 Aug 2004 02:41:22 -0000 @@ -11,7 +11,7 @@ echo 'Please send bug reports to bug-guile@gnu.org (after checking this file).' echo find . -name '[a-z0-9]*' -type f -not -name '*~' \ - \( -printf "name: %f\n" \ + \( -exec printf "name: " \; -print \ -exec sed '/^$/ q' '{}' \; \) \ -maxdepth 1 --Apple-Mail-5--868689300 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://lists.gnu.org/mailman/listinfo/guile-devel --Apple-Mail-5--868689300--