X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/708e73052e8c7b27da76457e9c5187f6235cdd7f..f5f936175f4760487974219b5fe66927aff1ad5e:/distrib/scripts/is_text.sh diff --git a/distrib/scripts/is_text.sh b/distrib/scripts/is_text.sh index 60341c48a8..0a35664f1e 100755 --- a/distrib/scripts/is_text.sh +++ b/distrib/scripts/is_text.sh @@ -1,18 +1,42 @@ #!/bin/sh + +############################################################################### +# Name: is_text.sh +# Purpose: returns 0 if the file in cvs tree is text, 1 if binary +# Version: $Id$ +# Author: VZ +# Created: 2006-07-19 +# Copyright: (c) Vadim Zeitlin 2006 +############################################################################### + if [ $# != 1 ]; then echo "Usage: $0 " >&2 exit 2 fi -entries=`dirname $1`/CVS/Entries -if [ ! -f $entries ]; then - echo "CVS entries file \"$entries\" not found." >&2 - exit 3 +# don't do configure; config.sub; config.guess +if [ `basename $1` = "configure" ] ; then + exit 1 +fi +if [ `basename $1` = "config.sub" ] ; then + exit 1 +fi +if [ `basename $1` = "config.guess" ] ; then + exit 1 fi -re="^/`basename $1`/.*/-kb/" -if grep -q "$re" $entries; then +# ignore makefile.wat etc +if [ `basename $1` = "makefile.wat" ] ; then + exit 1 +fi +if [ `basename $1` = "config.wat" ] ; then exit 1 fi -exit 0 + +if svn proplist $1 | grep -q "eol-style" ; then + exit 0 +fi + +#either not a svn file or not one with eol-style +exit 3