Import the large NeWS and src folders. Tweak a few files.

This commit is contained in:
Ian Darwin
2016-02-26 18:38:56 -05:00
parent 8622199342
commit 5ade6b40d7
9387 changed files with 4936594 additions and 108 deletions

7
scripts/fixperms Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
# fixperms -- make sure all files are readable.
cd /stage
find . -type f ! -perm -004 -print | xargs chmod a+r
find . -type d ! -perm -005 -print | xargs chmod a+rx