From 3e36ed98814189cf92acd0f6d8eb16a27e14b814 Mon Sep 17 00:00:00 2001 From: bkoz Date: Mon, 24 Jul 2000 16:34:00 +0000 Subject: 2000-07-23 Brent Verner * bits/istream.tcc: istream::getline(char_type*, streamsize, char_type) make compliant * testsuite/27_io/istream_unformatted.cc: test for compliant behavior 2000-07-23 Benjamin Kosnik * acinclude.m4 (enable_cshadow_headers): Fix problems with blddir and srcdir used to define CSHADOW_INCLUDES.. * configure.in: For consistency, change .sanity_warned to stamp-sanity-warned. * acinclude.m4: Tweak formatting. * Makefile.am (check): Call mkcheck with full pathname for build directory... (check-install): And here. * Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35227 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libstdc++-v3/Makefile.am') diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index 28da16b22ac..5032ed19437 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -31,13 +31,16 @@ gxx_include_dir=$(includedir)/g++ SUBDIRS = math libio src +# Use $(blddir) instead of $(top_builddir) for arguments to "mkcheck" +# because then the paths will be full pathnames, not relative +# pathnames. (-Wl,--rpath seems to like this better.) check: $(top_builddir)/mkcheck chmod +x $(top_builddir)/mkcheck - $(top_builddir)/mkcheck 0 $(top_builddir) $(top_srcdir) + $(top_builddir)/mkcheck 0 `pwd` $(top_srcdir) check-install: $(top_builddir)/mkcheck chmod +x $(top_builddir)/mkcheck - $(top_builddir)/mkcheck 1 $(top_builddir) $(top_srcdir) $(prefix) + $(top_builddir)/mkcheck 1 `pwd` $(top_srcdir) $(prefix) #all-local: stamp-rebuild -- cgit v1.2.1