diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-12-16 00:19:40 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-12-16 00:19:40 +0000 |
commit | 243babd42406749d7299822be3fb63a9ccc4fcd3 (patch) | |
tree | aadc895c3ae6f4d630b45dc2105f58232b0418df /gas/testsuite | |
parent | 8b1f3552cfa0a6d7c100b3a428caf7b5b8f598dc (diff) | |
download | gdb-243babd42406749d7299822be3fb63a9ccc4fcd3.zip gdb-243babd42406749d7299822be3fb63a9ccc4fcd3.tar.gz gdb-243babd42406749d7299822be3fb63a9ccc4fcd3.tar.bz2 |
* Makefile.in (AS_FOR_TARGET, OBJDUMP_FOR_TARGET): Don't set.
(uninstall): Don't set OBJDUMP and OBJDUMPFLAGS in site.exp.
* config/default.exp: Default OBJDUMP and OBJDUMPFLAGS. Use findfile and
transform procedures to determine objdump program name.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/Makefile.in | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gas/testsuite/Makefile.in b/gas/testsuite/Makefile.in index 3e4f795..e8e6922 100644 --- a/gas/testsuite/Makefile.in +++ b/gas/testsuite/Makefile.in @@ -62,29 +62,6 @@ RUNTEST = `if [ -f $${srcdir}/../../dejagnu/runtest ] ; then \ else echo runtest ; fi` RUNTESTFLAGS = -# The ugliness in the program_transform_name version seems necessary -# to work around some strange behavior of /bin/sh on 386bsd (0.1). -AS_FOR_TARGET = ` \ - if [ -f ../Makefile ] ; then \ - echo ../as.new ; \ - else \ - if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ - echo $(AS); \ - else \ - (set -e ; t='$(program_transform_name)'; echo as | sed -e '' $$t); \ - fi; \ - fi` -OBJDUMP_FOR_TARGET = ` \ - if [ -f ../../binutils/Makefile ] ; then \ - echo ../../binutils/objdump ; \ - else \ - if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ - echo $(OBJDUMP); \ - else \ - (set -e ; t='$(program_transform_name)'; echo objdump | sed -e '' $$t); \ - fi; \ - fi` - #### host, target, and site specific Makefile frags come in here. all: @@ -117,8 +94,6 @@ site.exp: ./Makefile @echo set srcdir ${srcdir} >> ./tmp0 @echo set exec_prefix ${exec_prefix} >> ./tmp0 @echo set objdir `pwd` >> ./tmp0 - @echo set OBJDUMP ${OBJDUMP_FOR_TARGET} >> ./tmp0 - @echo set OBJDUMPFLAGS \"${OBJDUMPFLAGS}\" >> ./tmp0 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0 @sed -e '1,/^## All variables above are.*##/ d' < site.bak >> ./tmp0 @mv -f ./tmp0 site.exp |