diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-22 21:48:26 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-22 21:48:26 +0000 |
commit | 24e7444acf66ac5508f351b65ca0df1bdec95941 (patch) | |
tree | 5167e8971254a115242f66427a97a43250ac1cfb | |
parent | 6c3a23019fa81b3d3277a40f189b790cc7ebf01e (diff) | |
download | gcc-24e7444acf66ac5508f351b65ca0df1bdec95941.tar.gz |
* Makefile.am (check-abi, new-abi-baseline): Use @glibcpp_srcdir@
instead of ${top_srcdir}.
* Makefile.in: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58418 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.am | 4 | ||||
-rw-r--r-- | 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 <jakub@redhat.com> + + * Makefile.am (check-abi, new-abi-baseline): Use @glibcpp_srcdir@ + instead of ${top_srcdir}. + * Makefile.in: Rebuilt. + 2002-10-22 Loren J. Rittle <ljrittle@acm.org> * testsuite/18_support/numeric_limits.cc (test_extrema<long double>): 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. |