classpath-patches
[Top][All Lists]
Advanced

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

[cp-patches] [patch] fix solaris find issue


From: Andreas Tobler
Subject: [cp-patches] [patch] fix solaris find issue
Date: Sun, 07 Feb 2010 21:18:34 +0100
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.7) Gecko/20100111 Lightning/1.0b1 Thunderbird/3.0.1

Hi all,

I'd like to commit the following patch. It is already in gcc tree and I have the ok (Tromey) to commit. But I'd like to inform herewith.

Everybody ok with?

Details here:
http://gcc.gnu.org/ml/java-patches/2009-q4/msg00067.html

Thanks,
Andreas

2010-02-07  Andreas Tobler  <address@hidden>

        * tools/Makefile.am (GJDOC_EX): Use find -name pattern -prune -o.

RCS file: /sources/classpath/classpath/tools/Makefile.am,v
retrieving revision 1.62
diff -u -r1.62 Makefile.am
--- tools/Makefile.am   30 Jan 2010 02:33:51 -0000      1.62
+++ tools/Makefile.am   7 Feb 2010 20:16:58 -0000
@@ -267,12 +267,10 @@
$(gnu_classpath_tools_gjdoc_jar_XHTML) $(gnu_classpath_tools_gjdoc_jar_XSLS)

 if !CREATE_GJDOC
-GJDOC_EX = -path '*gnu/classpath/tools/gjdoc' -prune -o \
-       -path '*gnu/classpath/tools/doclets' -prune -o \
-       -path '*gnu/classpath/tools/taglets' -prune -o \
-       -path '*com/sun/javadoc' -prune -o \
-       -path '*com/sun/tools/doclets' -prune -o \
-       -path '*com/sun/tools/javadoc' -prune -o
+GJDOC_EX = -name gjdoc -prune -o \
+       -name doclets -prune -o \
+       -name taglets -prune -o \
+       -name javadoc -prune -o
 endif

 # The zip files with classes we want to produce.




reply via email to

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