]>
Commit | Line | Data |
---|---|---|
37ab190f | 1 | #!/bin/sh |
da44b91e VZ |
2 | |
3 | ############################################################################### | |
4 | # Name: is_text.sh | |
5 | # Purpose: returns 0 if the file in cvs tree is text, 1 if binary | |
6 | # Version: $Id$ | |
7 | # Author: VZ | |
8 | # Created: 2006-07-19 | |
9 | # Copyright: (c) Vadim Zeitlin 2006 <vadim@wxwindows.org> | |
10 | ############################################################################### | |
11 | ||
37ab190f KO |
12 | if [ $# != 1 ]; then |
13 | echo "Usage: $0 <file>" >&2 | |
14 | exit 2 | |
15 | fi | |
16 | ||
948ddccf CE |
17 | # don't do configure; config.sub; config.guess |
18 | if [ `basename $1` = "configure" ] ; then | |
19 | exit 1 | |
20 | fi | |
21 | if [ `basename $1` = "config.sub" ] ; then | |
22 | exit 1 | |
23 | fi | |
24 | if [ `basename $1` = "config.guess" ] ; then | |
25 | exit 1 | |
26 | fi | |
27 | ||
392b9a6f CE |
28 | if svn proplist $1 | grep -q "eol-style" ; then |
29 | exit 0 | |
30 | fi | |
37ab190f | 31 | |
392b9a6f CE |
32 | #either not a svn file or not one with eol-style |
33 | exit 3 |