~vcs-imports/poedit/trunk

« back to all changes in this revision

Viewing changes to make-distrib.sh

  • Committer: vaclavslavik
  • Date: 2009-11-03 16:26:44 UTC
  • Revision ID: vcs-imports@canonical.com-20091103162644-sm2sfnjv2xbgcj44
Yet another fix to r1528: this time, make-distrib.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
#
4
4
# Creates distribution files
5
 
# $Id: make-distrib.sh 1496 2009-08-23 09:49:31Z vaclavslavik $
 
5
# $Id: make-distrib.sh 1532 2009-11-03 16:26:44Z vaclavslavik $
6
6
#
7
7
 
8
8
VERSION=1.4
28
28
find_unix_files()
29
29
{
30
30
  (find . -maxdepth 1 -type f ; \
31
 
  find admin build locales src docs install macosx win32 -type f) | \
 
31
  find admin build locales src docs macosx win32 -type f) | \
32
32
    grep -v '/win32-' | \
33
33
    grep -v '/\.svn' | \
34
34
    grep -v '/\.bakefile_gen.state' | \
35
35
    grep -v '\.#' | \
36
 
    grep -v '\.\(dsp\|dsw\|chm\|rtf\|ncb\|opt\|plg\)' | \
37
 
    grep -v 'install/.*\.txt'
 
36
    grep -v '\.\(dsp\|dsw\|chm\|rtf\|ncb\|opt\|plg\)'
38
37
}
39
38
 
40
39
find_win32_files()