root/trunk/scripts/cleandist.sh

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
13find . -name .svn -print0 | xargs -0 rm -rf
14find . -name CVS -print0 | xargs -0 rm -rf
15find . -name .cvsignore -print0 | xargs -0 rm -f
16find . -name '.#*' -print0 | xargs -0 rm -f
17find . -name .DS_Store -print0 | xargs -0 rm -f
18find . -name '.gdb*' -print0 | xargs -0 rm -f
19
20find . -type f -print0 | xargs -0 chmod 644
21find . -type d -print0 | xargs -0 chmod 755
22
23chmod a+x integration/*.sh
24chmod a+x manuals/userman/*.sh
25chmod a+x manuals/refman/*.sh
26chmod a+x scripts/*.sh
27chmod a-x scripts/*.js
28chmod a+x scripts/debian/postinst
29chmod a+x scripts/debian/prerm
30chmod a+x scripts/debian/postrm
31chmod a+x scripts/linux/*.sh
32chmod a+x scripts/macosx/postflight
33chmod a+x xml/*.sh
34chmod a-x xml/*.js
Note: See TracBrowser for help on using the browser.