42aabce1bb
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1973 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
32 lines
997 B
Bash
Executable File
32 lines
997 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## ================================================================
|
|
## Logtalk - Open source object-oriented logic programming language
|
|
## Release 2.30.7
|
|
##
|
|
## Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved.
|
|
## ================================================================
|
|
|
|
find . -name .svn -print0 | xargs -0 rm -rf
|
|
find . -name CVS -print0 | xargs -0 rm -rf
|
|
find . -name .cvsignore -print0 | xargs -0 rm -f
|
|
find . -name '.#*' -print0 | xargs -0 rm -f
|
|
find . -name .DS_Store -print0 | xargs -0 rm -f
|
|
find . -name '.gdb*' -print0 | xargs -0 rm -f
|
|
|
|
find . -type f -print0 | xargs -0 chmod 644
|
|
find . -type d -print0 | xargs -0 chmod 755
|
|
|
|
chmod a+x integration/*.sh
|
|
chmod a+x manuals/userman/*.sh
|
|
chmod a+x manuals/refman/*.sh
|
|
chmod a+x scripts/*.sh
|
|
chmod a-x scripts/*.js
|
|
chmod a+x scripts/debian/postinst
|
|
chmod a+x scripts/debian/prerm
|
|
chmod a+x scripts/debian/postrm
|
|
chmod a+x scripts/linux/*.sh
|
|
chmod a+x scripts/macosx/postflight
|
|
chmod a+x xml/*.sh
|
|
chmod a-x xml/*.js
|