Hi,

I have spotted a small problem on Darwin5/6 with copy-vmresources.sh.in. We need to add a '.' after some 'find' commands. This patch does this.

ChangeLog:

2005-12-11  Guilhem Lavaux <[EMAIL PROTECTED]>

        * lib/copy-vmresources.sh.in: Added some '.' after find.

Regards,

Guilhem.
Index: lib/copy-vmresources.sh.in
===================================================================
RCS file: /cvsroot/classpath/classpath/lib/copy-vmresources.sh.in,v
retrieving revision 1.2
diff -u -r1.2 copy-vmresources.sh.in
--- lib/copy-vmresources.sh.in  2 Nov 2005 21:04:10 -0000       1.2
+++ lib/copy-vmresources.sh.in  11 Dec 2005 13:10:56 -0000
@@ -9,11 +9,11 @@
 for p in ${vmdirs}; do
        if test -d $p/META-INF; then
                (cd $p/META-INF; 
-                dirs=`find -name "CVS" -prune -o -type d -print`;
+                dirs=`find . -name "CVS" -prune -o -type d -print`;
                 for u in ${dirs}; do
                         mkdir -p ${destMetaDir}/${u};
                 done;
-                files=`find -name "CVS" -prune -o -type f -print`;
+                files=`find . -name "CVS" -prune -o -type f -print`;
                 for u in ${files}; do
                         cp ${u} ${destMetaDir}/${u};
                 done
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to