classpath-patches
[Top][All Lists]
Advanced

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

[cp-patches] FYI: Small bug in copy-vmresources.sh.in on small platform


From: Guilhem Lavaux
Subject: [cp-patches] FYI: Small bug in copy-vmresources.sh.in on small platform
Date: Sun, 11 Dec 2005 14:13:02 +0100
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050322)

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 <address@hidden>

        * 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

reply via email to

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