| #!/bin/sh |
| # |
| # @(#)scslize 1.1 02/04/02 |
| # |
| # A shell script to modify a workspace to make it suitable |
| # for the SCSL release of the source. We get rid of lots |
| # of internal-only tests and stuff. |
| # |
| # First, remove permission for anyone to putback this workspace. |
| # |
| cd $CODEMGR_WS |
| ed - Codemgr_wsdata/access_control <<'EOF' |
| /^putback-from/c |
| putback-from - |
| . |
| w |
| q |
| EOF |
| # |
| # Next, remove the files that don't belong here. |
| # |
| workspace filerm \ |
| tests \ |
| src/share/classes/javasoft \ |
| src/share/classes/test \ |
| src/share/doc/spec \ |
| build/precompile.jtx \ |
| build/solaris/scslize |