diff options
author | Cary Coutant <ccoutant@google.com> | 2013-05-13 17:35:22 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2013-05-13 17:35:22 +0000 |
commit | 9df9de2ccaad76582d6968d486d54f12e4da659f (patch) | |
tree | 9de17ee41a4cec9bb7cde93e17cff59461693226 /gold/testsuite/Makefile.in | |
parent | 92ce080be64446a0ca9025211d3be4bd638c0a3c (diff) | |
download | gdb-9df9de2ccaad76582d6968d486d54f12e4da659f.zip gdb-9df9de2ccaad76582d6968d486d54f12e4da659f.tar.gz gdb-9df9de2ccaad76582d6968d486d54f12e4da659f.tar.bz2 |
gold/
* configure.ac: Export DEFAULT_TARGET.
* configure: Regenerate.
* Makefile.in: Regenerate.
* testsuite/Makefile.am: Add .EXPORT_ALL_VARIABLES.
* testsuite/Makefile.in: Regenerate.
* testsuite/debug_msg.sh: Delete duplicate tests.
Don't check undef_int error message match for powerpc where the
source file and line number aren't available.
Diffstat (limited to 'gold/testsuite/Makefile.in')
-rw-r--r-- | gold/testsuite/Makefile.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gold/testsuite/Makefile.in b/gold/testsuite/Makefile.in index 7d159e7..1e00b15 100644 --- a/gold/testsuite/Makefile.in +++ b/gold/testsuite/Makefile.in @@ -1907,6 +1907,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ +DEFAULT_TARGET = @DEFAULT_TARGET@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLOPEN_LIBS = @DLOPEN_LIBS@ @@ -4301,13 +4302,9 @@ uninstall-am: recheck recheck-html tags uninstall uninstall-am -# Make the default target available to scripts as $DEFAULT_TARGET. -@DEFAULT_TARGET_ARM_TRUE@export DEFAULT_TARGET = arm -@DEFAULT_TARGET_I386_TRUE@export DEFAULT_TARGET = i386 -@DEFAULT_TARGET_POWERPC_TRUE@export DEFAULT_TARGET = powerpc -@DEFAULT_TARGET_SPARC_TRUE@export DEFAULT_TARGET = sparc -@DEFAULT_TARGET_X86_64_TRUE@export DEFAULT_TARGET = x86_64 -@DEFAULT_TARGET_TILEGX_TRUE@export DEFAULT_TARGET = tilegx +# Export make variables to the shell scripts so that they can see +# (for example) DEFAULT_TARGET. +.EXPORT_ALL_VARIABLES: # The unittests themselves |