Imcc is still lacking full integration inside Parrot. To accomplish this, we would need these steps:

- rebuild and commit directory structure $Parrot_Root/imcc
- move files from languages/imcc to ../imcc [1]
- adapt Makefiles
- include imcc source files except main.c into libparrot

[1] info cvs
* Adding and removing::         Adding/removing/renaming files...
* Moving files::                Moving and renaming files
* Outside::                     The normal way to Rename
The Normal way to Rename
------------------------

   The normal way to move a file is to copy OLD to NEW, and then issue
the normal CVS commands to remove OLD from the repository, and add NEW
to it.

     $ mv OLD NEW
     $ cvs remove OLD
     $ cvs add NEW
     $ cvs commit -m "Renamed OLD to NEW" OLD NEW
or better - including the comments WRT "commit -r rev":
     $ cvs commit -m "Renamed OLD to NEW" -r $next_rev OLD NEW

Is there a better way to move the files?
Does someone have a script for that kind of stuff?

Thanks,
leo



Reply via email to