summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGuilhem Lavaux <guilhem@kaffe.org>2005-12-11 13:14:04 +0000
committerGuilhem Lavaux <guilhem@kaffe.org>2005-12-11 13:14:04 +0000
commitf3164a3ab2d56a51c01f37e747beefe9c5369f7c (patch)
tree45dbeaf17ad5182bf75c5b7318651b36691ded4f /lib
parent82e6c31d0a16219810e1b63a39d1a42ffad0ffaa (diff)
downloadclasspath-f3164a3ab2d56a51c01f37e747beefe9c5369f7c.tar.gz
2005-12-11 Guilhem Lavaux <guilhem@kaffe.org>
* lib/copy-vmresources.sh.in: Added some '.' after find.
Diffstat (limited to 'lib')
-rw-r--r--lib/copy-vmresources.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/copy-vmresources.sh.in b/lib/copy-vmresources.sh.in
index 9c3e882b2..a04ebebee 100644
--- a/lib/copy-vmresources.sh.in
+++ b/lib/copy-vmresources.sh.in
@@ -9,11 +9,11 @@ destResDir=`pwd`
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