Hi,

copy-vmresources.sh would use the wrong find path after cd-ing into the
target directory. This fixes that:

2005-12-17  Mark Wielaard  <[EMAIL PROTECTED]>

    * lib/copy-vmresources.sh.in: Use dot '.' for find after changing
    dir to target directory.


Committed,

Mark

diff -u -r1.3 copy-vmresources.sh.in
--- lib/copy-vmresources.sh.in  11 Dec 2005 13:14:05 -0000      1.3
+++ lib/copy-vmresources.sh.in  17 Dec 2005 22:53:22 -0000
@@ -21,7 +21,7 @@
        fi;

        (cd ${p};
-         resfiles=`find ${p} -name "*.properties"`
+         resfiles=`find . -name "*.properties"`
          resdirs=
          for i in ${resfiles}; do
                  a=`basename ${i}`;

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

_______________________________________________
Classpath-patches mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to