|
Revision 3941, 1.0 KB
(checked in by pmoura, 13 months ago)
|
|
Updated release number to 2.31.0 due to the incompatible changes in this version regarding compiler hooks.
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | ## ================================================================ |
|---|
| 4 | ## Logtalk - Open source object-oriented logic programming language |
|---|
| 5 | ## Release 2.31.0 |
|---|
| 6 | ## |
|---|
| 7 | ## Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved. |
|---|
| 8 | ## ================================================================ |
|---|
| 9 | |
|---|
| 10 | find . -name .svn -print0 | xargs -0 rm -rf |
|---|
| 11 | find . -name CVS -print0 | xargs -0 rm -rf |
|---|
| 12 | find . -name .cvsignore -print0 | xargs -0 rm -f |
|---|
| 13 | find . -name '.#*' -print0 | xargs -0 rm -f |
|---|
| 14 | find . -name .DS_Store -print0 | xargs -0 rm -f |
|---|
| 15 | find . -name '.gdb*' -print0 | xargs -0 rm -f |
|---|
| 16 | |
|---|
| 17 | find . -type f -print0 | xargs -0 chmod 644 |
|---|
| 18 | find . -type d -print0 | xargs -0 chmod 755 |
|---|
| 19 | |
|---|
| 20 | chmod a+x integration/*.sh |
|---|
| 21 | chmod a+x manuals/userman/*.sh |
|---|
| 22 | chmod a+x manuals/refman/*.sh |
|---|
| 23 | chmod a+x scripts/*.sh |
|---|
| 24 | chmod a-x scripts/*.js |
|---|
| 25 | chmod a+x scripts/debian/postinst |
|---|
| 26 | chmod a+x scripts/debian/prerm |
|---|
| 27 | chmod a+x scripts/debian/postrm |
|---|
| 28 | chmod a+x scripts/linux/*.sh |
|---|
| 29 | chmod a+x scripts/macosx/postflight |
|---|
| 30 | chmod a+x xml/*.sh |
|---|
| 31 | chmod a-x xml/*.js |
|---|