classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: find bugfixlet for solaris


From: Mark Wielaard
Subject: [cp-patches] FYI: find bugfixlet for solaris
Date: Sun, 04 Sep 2005 15:54:46 +0200

Hi,

I am committing this fix for a find buglet on solaris. Andreas tested it
on sparc solaris and I on x86 GNU/Linux.

2005-09-04  Andreas Tobler  <address@hidden>

        Fix for bug #23653
        * lib/Makefile.am (metafiles): Use find -name -prune not -path.

Thanks for testing and coming up with a fix for this Andreas.

Committed,

Mark


Index: lib/Makefile.am
===================================================================
RCS file: /cvsroot/classpath/classpath/lib/Makefile.am,v
retrieving revision 1.100
diff -u -r1.100 Makefile.am
--- lib/Makefile.am     22 Aug 2005 21:04:35 -0000      1.100
+++ lib/Makefile.am     3 Sep 2005 18:57:27 -0000
@@ -7,7 +7,7 @@
 
 propertydirs :=  $(shell cd $(top_srcdir)/resource && $(FIND) gnu java org 
META-INF -type d ! -name CVS -print)
 propertyfiles :=  $(shell cd $(top_srcdir)/resource && $(FIND) gnu java org 
-name \*\.properties -print)
-metafiles :=  $(shell cd $(top_srcdir)/resource && $(FIND) META-INF -path 
\*/CVS -prune -o -type f -print)
+metafiles :=  $(shell cd $(top_srcdir)/resource && $(FIND) META-INF -name CVS 
-prune -o -type f -print)
 iconfiles :=  $(shell cd $(top_srcdir) && $(FIND) 
gnu/javax/swing/plaf/gtk/icons -name *.png -type f -print)
 
 compile_classpath = 
$(vm_classes):$(top_srcdir):$(top_srcdir)/external/w3c_dom:$(top_srcdir)/external/sax:.:$(USER_CLASSLIB)

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]