From 7e7e6d089d210e9a6af1c36ee567a91220716de6 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 22 Oct 2002 23:48:26 +0200 Subject: [PATCH] Makefile.am (check-abi, [...]): Use @glibcpp_srcdir@ instead of ${top_srcdir}. * Makefile.am (check-abi, new-abi-baseline): Use @glibcpp_srcdir@ instead of ${top_srcdir}. * Makefile.in: Rebuilt. From-SVN: r58418 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/Makefile.am | 4 ++-- libstdc++-v3/Makefile.in | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7021bae0566..95eff62c66a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2002-10-22 Jakub Jelinek + + * Makefile.am (check-abi, new-abi-baseline): Use @glibcpp_srcdir@ + instead of ${top_srcdir}. + * Makefile.in: Rebuilt. + 2002-10-22 Loren J. Rittle * testsuite/18_support/numeric_limits.cc (test_extrema): diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index ef884fbff27..7e70390ce5e 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -51,7 +51,7 @@ check-script-install: $(top_builddir)/mkcheck baseline_file = @baseline_file@ check-abi: $(top_builddir)/testsuite/abi_check -@(cd testsuite; \ - ${top_srcdir}/config/abi/extract_symvers \ + @glibcpp_srcdir@/config/abi/extract_symvers \ ../src/.libs/libstdc++.so \ ./current_symbols.txt && \ ./abi_check --check ./current_symbols.txt ${baseline_file}) @@ -63,7 +63,7 @@ new-abi-baseline: t=`echo $${output} | sed 's=.*config/abi/=='`; \ echo "Baseline file already exists, writing to $${t} instead."; \ fi; \ - ${top_srcdir}/config/abi/extract_symvers \ + @glibcpp_srcdir@/config/abi/extract_symvers \ src/.libs/libstdc++.so $${output}) # These rules are messy, but are hella worth it. diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in index 7d0551f6ca3..97f5ee38aec 100644 --- a/libstdc++-v3/Makefile.in +++ b/libstdc++-v3/Makefile.in @@ -487,7 +487,7 @@ check-script-install: $(top_builddir)/mkcheck @glibcpp_builddir@/mkcheck 1) check-abi: $(top_builddir)/testsuite/abi_check -@(cd testsuite; \ - ${top_srcdir}/config/abi/extract_symvers \ + @glibcpp_srcdir@/config/abi/extract_symvers \ ../src/.libs/libstdc++.so \ ./current_symbols.txt && \ ./abi_check --check ./current_symbols.txt ${baseline_file}) @@ -499,7 +499,7 @@ new-abi-baseline: t=`echo $${output} | sed 's=.*config/abi/=='`; \ echo "Baseline file already exists, writing to $${t} instead."; \ fi; \ - ${top_srcdir}/config/abi/extract_symvers \ + @glibcpp_srcdir@/config/abi/extract_symvers \ src/.libs/libstdc++.so $${output}) # These rules are messy, but are hella worth it.