done
fi
+cygnus_files="mh-go32"
+
+if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
+ for i in $cygnus_files ; do
+ if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping cygnus stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $cygnus_files ; do
+ if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"cygnus\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/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
# End of file.
# We don't want to use debugging information on DOS. Unfortunately,
# this requires that we set CFLAGS.
-CFLAGS=-O2 -fno-omit-frame-pointer
+# This used to set -fno-omit-frame-pointer.
+CFLAGS=-O2
+# start-sanitize-cygnus
# We set MAKEINFOFLAGS to not split .info files, because the resulting
# file names don't work on DOS.
# This does some sort of DOS specific installation, I guess.
INSTALL_DOSREL=install-dosrel
+# end-sanitize-cygnus