|
Revision 4572, 1.2 KB
(checked in by pmoura, 2 weeks ago)
|
|
Updated the Logtalk version number to 2.33.3 in preparation for the next release.
|
-
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.33.3 |
|---|
| 6 | ## |
|---|
| 7 | ## Copyright (c) 1998-2008 Paulo Moura. All Rights Reserved. |
|---|
| 8 | ## Logtalk is free software. You can redistribute it and/or modify |
|---|
| 9 | ## it under the terms of the "Artistic License 2.0" as published by |
|---|
| 10 | ## The Perl Foundation. Consult the "LICENSE.txt" file for details. |
|---|
| 11 | ## ================================================================ |
|---|
| 12 | |
|---|
| 13 | find . -name .svn -print0 | xargs -0 rm -rf |
|---|
| 14 | find . -name CVS -print0 | xargs -0 rm -rf |
|---|
| 15 | find . -name .cvsignore -print0 | xargs -0 rm -f |
|---|
| 16 | find . -name '.#*' -print0 | xargs -0 rm -f |
|---|
| 17 | find . -name .DS_Store -print0 | xargs -0 rm -f |
|---|
| 18 | find . -name '.gdb*' -print0 | xargs -0 rm -f |
|---|
| 19 | |
|---|
| 20 | find . -type f -print0 | xargs -0 chmod 644 |
|---|
| 21 | find . -type d -print0 | xargs -0 chmod 755 |
|---|
| 22 | |
|---|
| 23 | chmod a+x integration/*.sh |
|---|
| 24 | chmod a+x manuals/userman/*.sh |
|---|
| 25 | chmod a+x manuals/refman/*.sh |
|---|
| 26 | chmod a+x scripts/*.sh |
|---|
| 27 | chmod a-x scripts/*.js |
|---|
| 28 | chmod a+x scripts/debian/postinst |
|---|
| 29 | chmod a+x scripts/debian/prerm |
|---|
| 30 | chmod a+x scripts/debian/postrm |
|---|
| 31 | chmod a+x scripts/linux/*.sh |
|---|
| 32 | chmod a+x scripts/macosx/postflight |
|---|
| 33 | chmod a+x xml/*.sh |
|---|
| 34 | chmod a-x xml/*.js |
|---|