done
fi
+if ( echo $* | grep lose\-mswin > /dev/null ) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"mswin\"...
+ fi
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"mswin\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-mswin/,/end-\sanitize\-mswin/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ if [ -n "${verbose}" ] ; then
+ echo Caching $i in .Recover...
+ fi
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+else
+ if [ -n "${verbose}" ] ; then
+ echo Leaving \"mswin\" in the sources...
+ fi
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping \"mswin\" stuff in $i, but editing out sanitize lines...
+ fi
+ cp $i new
+ sed -e '/start\-sanitize\-mswin/d' -e '/end\-sanitize\-mswin/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ if [ -n "${verbose}" ] ; then
+ echo Caching $i in .Recover...
+ fi
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+fi
+
vr5400_files="ChangeLog config.sub"
if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
*-mingw32*)
host_makefile_frag="${host_makefile_frag} config/mh-mingw32"
;;
+# start-sanitize-mswin
*-windows*)
host_makefile_frag="${host_makefile_frag} config/mh-windows"
;;
+# end-sanitize-mswin
vax-*-ultrix2*)
host_makefile_frag="${host_makefile_frag} config/mh-vaxult2"
;;