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:
parent
3fa27f794b
commit
948ddccfab
@ -14,6 +14,17 @@ if [ $# != 1 ]; then
|
|||||||
exit 2
|
exit 2
|
||||||
fi
|
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
|
entries=`dirname $1`/CVS/Entries
|
||||||
if [ ! -f $entries ]; then
|
if [ ! -f $entries ]; then
|
||||||
echo "CVS entries file \"$entries\" not found." >&2
|
echo "CVS entries file \"$entries\" not found." >&2
|
||||||
|
Loading…
Reference in New Issue
Block a user