cvsuser 04/10/07 09:05:16
Modified: . MANIFEST.generated
tools/dev install_files.pl
Log:
runtime prefix 6 - install BE icu data file too
Revision Changes Path
1.8 +1 -0 parrot/MANIFEST.generated
Index: MANIFEST.generated
===================================================================
RCS file: /cvs/public/parrot/MANIFEST.generated,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -w -r1.7 -r1.8
--- MANIFEST.generated 7 Oct 2004 13:36:47 -0000 1.7
+++ MANIFEST.generated 7 Oct 2004 16:05:15 -0000 1.8
@@ -46,3 +46,4 @@
runtime/parrot/include/vtable_methods.pasm [main]
runtime/parrot/include/warnings.pasm [main]
blib/lib/icu/2.6.1/icudt26l.dat [main]
+blib/lib/icu/2.6.1/icudt26b.dat [main]
1.11 +2 -1 parrot/tools/dev/install_files.pl
Index: install_files.pl
===================================================================
RCS file: /cvs/public/parrot/tools/dev/install_files.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -r1.10 -r1.11
--- install_files.pl 7 Oct 2004 13:36:52 -0000 1.10
+++ install_files.pl 7 Oct 2004 16:05:16 -0000 1.11
@@ -1,7 +1,7 @@
#! perl -w
################################################################################
# Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
-# $Id: install_files.pl,v 1.10 2004/10/07 13:36:52 leo Exp $
+# $Id: install_files.pl,v 1.11 2004/10/07 16:05:16 leo Exp $
################################################################################
=head1 TITLE
@@ -208,6 +208,7 @@
next;
}
else {
+ next unless -e $src;
copy($src, $dest) or die "copy $src to $dest: $!\n";
print "$dest\n";
}