cvs -q update
make distclean
perl Configure.pl
on my x86 SuSE 9.2 laptop and got
. . .
Checking MANIFEST......No such file: languages/parrot_compiler/lib/Parrot/Test/ParrotCompiler.pm
No such file: languages/parrot_compiler/t/basic/hello.t
No such file: languages/parrot_compiler/t/harness
No such file: runtime/parrot/library/YAML/Parser/Syck.imc
Ack, some files were missing! I can't continue running
without everything here. Please try to find the above
files and then try running Configure again.
The following patch deletes the missing files from MANIFEST, after which
Configure.pl succeeds, and "make test" works. (Actually, the tests are
still running, but at least the parrot squawks.)
-- Bob Rogers
http://rgrjr.dyndns.org/
========================================================================
--- MANIFEST.~1.848.~ 2005-03-16 20:38:22.000000000 -0500
+++ MANIFEST 2005-03-16 20:43:41.790067113 -0500
@@ -2253,12 +2253,9 @@
languages/parakeet/README.txt [parakeet]
languages/parakeet/parakeet.imc [parakeet]
languages/parakeet/test.pk [parakeet]
-languages/parrot_compiler/lib/Parrot/Test/ParrotCompiler.pm [parrot_compiler]
languages/parrot_compiler/parrot_compiler.imc [parrot_compiler]
languages/parrot_compiler/parrot.pasm [parrot_compiler]
languages/parrot_compiler/sample.pasm [parrot_compiler]
-languages/parrot_compiler/t/harness [parrot_compiler]
-languages/parrot_compiler/t/basic/hello.t [parrot_compiler]
languages/perl6/ChangeLog [perl6]
languages/perl6/P6C/Addcontext.pm [perl6]
languages/perl6/P6C/Builtins.pm [perl6]
@@ -2706,7 +2703,6 @@
runtime/parrot/library/postgres.declarations [library]
runtime/parrot/library/postgres.imc [library]
runtime/parrot/library/postgres.pasm [library]
-runtime/parrot/library/YAML/Parser/Syck.imc [library]
ops/bit.ops []
ops/cmp.ops []
ops/core.ops []
Yes, I have added these files recently, see
http://bugs6.perl.org/cgi-bin/cvsmonitor/cvsmonitor.pl?cmd=viewBrowseChangeSet&id=7676&module=perlpublic.parrot
Could you try:
cvs -q update -d -P
or alternatively:
make update
CU, Bernhard
--
**************************************************
Dipl.-Physiker Bernhard Schmalhofer
Senior Developer
Biomax Informatics AG
Lochhamer Str. 11
82152 Martinsried, Germany
Tel: +49 89 895574-839
Fax: +49 89 895574-825
eMail: Bernhard.S...@biomax.com
Website: www.biomax.com
**************************************************
Yes, I have added these files recently . . .
Could you try:
cvs -q update -d -P
. . .
CU, Bernhard
Yes, that did the trick -- William Coleda clued me in off-list last
night. This is one of my standard oversights; I even forget the "-d" on
projects where I'm the only developer. Sorry to bother everyone.
-- Bob