avoid configure, etc being in DOS format

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43962 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott 2006-12-13 09:46:20 +00:00
parent 3fa27f794b
commit 948ddccfab

View File

@ -14,6 +14,17 @@ if [ $# != 1 ]; then
exit 2
fi
# 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
entries=`dirname $1`/CVS/Entries
if [ ! -f $entries ]; then
echo "CVS entries file \"$entries\" not found." >&2