*** empty log message ***

This commit is contained in:
Michael Tiemann 1994-11-25 00:25:34 +00:00
parent 03c4ce2fcc
commit ff030c9827
2 changed files with 12 additions and 12 deletions

View File

@ -106,24 +106,24 @@ else
done done
fi fi
r16_files = "configure.in" rce_files="configure.in"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i echo Keeping rce stuff in $i
fi fi
fi fi
done done
else else
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i... echo Removing traces of \"rce\" from $i...
fi fi
cp $i new cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover... echo Caching $i in .Recover...

View File

@ -89,9 +89,9 @@ case "${targ}" in
h8300h-*-hms) ld_target=cf-h8300h ;; h8300h-*-hms) ld_target=cf-h8300h ;;
h8500-*-hms) ld_target=coff-h8500 ;; h8500-*-hms) ld_target=coff-h8500 ;;
sh-*-*) ld_target=coff-sh ;; sh-*-*) ld_target=coff-sh ;;
# start-sanitize-r16 # start-sanitize-rce
r16-*-*) ld_target=r16-aout ;; rce-*-*) ld_target=rce-aout ;;
# end-sanitize-r16 # end-sanitize-rce
m68k-sony-*) ld_target=news ;; m68k-sony-*) ld_target=news ;;
m68k-hp-bsd*) ld_target=hp300bsd ;; m68k-hp-bsd*) ld_target=hp300bsd ;;
m68*-*-aout) ld_target=m68k ;; m68*-*-aout) ld_target=m68k ;;