diff options
-rw-r--r-- | .Sanitize | 29 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | config.sub | 14 |
3 files changed, 49 insertions, 0 deletions
@@ -338,6 +338,35 @@ else done fi +tx49_files="ChangeLog config.sub" + +if ( echo $* | grep keep\-tx49 > /dev/null ) ; then + for i in $tx49_files ; do + if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping tx49 stuff in $i + fi + fi + done +else + for i in * ; do + if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"tx49\" from $i... + fi + cp $i new + sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/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 + tic80_files="ChangeLog config.sub configure.in" if ( echo $* | grep keep\-tic80 > /dev/null ) ; then @@ -1,3 +1,9 @@ +start-sanitize-tx49 +Wed Oct 29 16:52:43 1997 Gavin Koch <gavin@cygnus.com> + + * config.sub: Add tx49 configury. + +end-sanitize-tx49 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com> * configure.in: Remove a "second pass" of tweaking noconfigdirs, @@ -76,6 +76,11 @@ case $1 in set mipstx19-unknown-elf ;; # end-sanitize-tx19 +# start-sanitize-tx49 + mips-tx49-elf) + set mips64tx49-unknown-elf + ;; +# end-sanitize-tx49 *) ;; esac @@ -189,6 +194,11 @@ case $basic_machine in m88110 | m680[01234]0 | m683?2 | m68360 | z8k | v70 | h8500 | w65) # CYGNUS LOCAL basic_machine=$basic_machine-unknown ;; +# start-sanitize-tx49 + mips64tx49 | mips64tx49el) + basic_machine=$basic_machine-unknown + ;; +# end-sanitize-tx49 # start-sanitize-tx19 mipstx19 | mipstx19el) basic_machine=$basic_machine-unknown @@ -284,6 +294,10 @@ case $basic_machine in mipstx19-* | mipstx19el-*) ;; # end-sanitize-tx19 +# start-sanitize-tx49 + mips64tx49-* | mips64tx49el-*) + ;; +# end-sanitize-tx49 # start-sanitize-r5900 mips64r5900-* | mips64r5900el-*) # CYGNUS LOCAL gavin/r5900 ;; |