root/tags/lgt2311/scripts/cleandist.sh

Revision 4000, 1.0 KB (checked in by pmoura, 12 months ago)

Updated copyright string.

  • 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.1
6##
7## Copyright (c) 1998-2008 Paulo Moura.  All Rights Reserved.
8## ================================================================
9
10find . -name .svn -print0 | xargs -0 rm -rf
11find . -name CVS -print0 | xargs -0 rm -rf
12find . -name .cvsignore -print0 | xargs -0 rm -f
13find . -name '.#*' -print0 | xargs -0 rm -f
14find . -name .DS_Store -print0 | xargs -0 rm -f
15find . -name '.gdb*' -print0 | xargs -0 rm -f
16
17find . -type f -print0 | xargs -0 chmod 644
18find . -type d -print0 | xargs -0 chmod 755
19
20chmod a+x integration/*.sh
21chmod a+x manuals/userman/*.sh
22chmod a+x manuals/refman/*.sh
23chmod a+x scripts/*.sh
24chmod a-x scripts/*.js
25chmod a+x scripts/debian/postinst
26chmod a+x scripts/debian/prerm
27chmod a+x scripts/debian/postrm
28chmod a+x scripts/linux/*.sh
29chmod a+x scripts/macosx/postflight
30chmod a+x xml/*.sh
31chmod a-x xml/*.js
Note: See TracBrowser for help on using the browser.