diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-18 05:09:50 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-18 05:09:50 +0000 |
commit | 22baab859bbcd9fcd86f970e3ef5bbc9dafe90d0 (patch) | |
tree | ea8fe635ded2a4e0a75f3ee8ca10f009bd0187a0 /libstdc++-v3/testsuite/Makefile.in | |
parent | cc912860ddd03c12e6b76569477da898f76593c6 (diff) | |
download | gcc-22baab859bbcd9fcd86f970e3ef5bbc9dafe90d0.tar.gz |
* testsuite/Makefile.am (new-abi-baseline): Create baseline
directory.
(baseline_file): Use baseline_dir.
(baseline_dir): New.
(mkinstalldirs): New.
* acinclude.m4: Rename baseline_file to baseline_dir, strip
filename from baseline_dir.
* testsuite/Makefile.in: Regenerated.
* Makefile.in: Regenerated.
* aclocal.m4: Regenerated.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68136 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/Makefile.in')
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index 3df92864cad..680247079ef 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -137,6 +137,8 @@ toplevel_srcdir = @toplevel_srcdir@ AUTOMAKE_OPTIONS = cygnus dejagnu +mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs + DEJATOOL = libstdc++-v3 EXPECT = `if [ -f @glibcpp_builddir@/../../expect/expect ] ; then \ @@ -177,7 +179,8 @@ libv3test_a_SOURCES = testsuite_hooks.cc testsuite_allocator.cc @GLIBCPP_TEST_ABI_FALSE@noinst_PROGRAMS = abi_check_SOURCES = abi_check.cc -baseline_file = @baseline_file@ +baseline_dir = @baseline_dir@ +baseline_file = ${baseline_dir}/baseline_symbols.txt extract_symvers = @glibcpp_srcdir@/scripts/extract_symvers # These two special 'check-script' rules use the bash script 'check' @@ -197,7 +200,6 @@ check_performance = ${glibcpp_srcdir}/scripts/check_performance CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \ testsuite_* site.exp abi_check baseline_symbols -mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = LIBRARIES = $(noinst_LIBRARIES) @@ -507,6 +509,7 @@ baseline_symbols: touch baseline_symbols) new-abi-baseline: + -@$(mkinstalldirs) ${baseline_dir} -@(output=${baseline_file}; \ if test -f $${output}; then \ output=$${output}.new; \ |