Commit d960c105 by Jason Merrill Committed by Jason Merrill

configure.in (compiler_name): Don't do the skip-this-dir thing if we're reconfiguring.

	* configure.in (compiler_name): Don't do the skip-this-dir thing
	if we're reconfiguring.

From-SVN: r26899
parent 94db2f71
1999-05-12 Jason Merrill <jason@yorick.cygnus.com>
* configure.in (compiler_name): Don't do the skip-this-dir thing
if we're reconfiguring.
1999-04-29 Nathan Sidwell <nathan@acm.org> 1999-04-29 Nathan Sidwell <nathan@acm.org>
* streambuf.h (ios::~ios): Use operator delete[] to remove _arrays. * streambuf.h (ios::~ios): Use operator delete[] to remove _arrays.
......
...@@ -18,9 +18,11 @@ esac ...@@ -18,9 +18,11 @@ esac
# does, we do not build anything. Note, $r is set by the top-level Makefile. # does, we do not build anything. Note, $r is set by the top-level Makefile.
# Note that when we look for the compiler, we search both with and without # Note that when we look for the compiler, we search both with and without
# extension to handle cross and canadian cross builds. # extension to handle cross and canadian cross builds.
# Note that if $norecursion is set we're being called from config.status,
# so don't check for the compiler; we might be doing a make clean.
compiler_name=cc1plus compiler_name=cc1plus
rm -f skip-this-dir rm -f skip-this-dir
if test -n "$r"; then if test -n "$r" && [ -z "$norecursion" ] ; then
if test -d "$r"/gcc; then if test -d "$r"/gcc; then
if test -f "$r"/gcc/$compiler_name \ if test -f "$r"/gcc/$compiler_name \
|| test -f "$r"/gcc/$compiler_name$EXEEXT; then || test -f "$r"/gcc/$compiler_name$EXEEXT; then
......
1999-05-12 Jason Merrill <jason@yorick.cygnus.com>
* configure.in (compiler_name): Don't do the skip-this-dir thing
if we're reconfiguring.
1999-05-07 Ulrich Drepper <drepper@cygnus.com> 1999-05-07 Ulrich Drepper <drepper@cygnus.com>
* std/bastring.h (class basic_string::Rep): Make release member * std/bastring.h (class basic_string::Rep): Make release member
......
...@@ -18,9 +18,11 @@ esac ...@@ -18,9 +18,11 @@ esac
# does, we do not build anything. Note, $r is set by the top-level Makefile. # does, we do not build anything. Note, $r is set by the top-level Makefile.
# Note that when we look for the compiler, we search both with and without # Note that when we look for the compiler, we search both with and without
# extension to handle cross and canadian cross builds. # extension to handle cross and canadian cross builds.
# Note that if $norecursion is set we're being called from config.status,
# so don't check for the compiler; we might be doing a make clean.
compiler_name=cc1plus compiler_name=cc1plus
rm -f skip-this-dir rm -f skip-this-dir
if test -n "$r"; then if test -n "$r" && [ -z "$norecursion" ] ; then
if test -d "$r"/gcc; then if test -d "$r"/gcc; then
if test -f "$r"/gcc/$compiler_name \ if test -f "$r"/gcc/$compiler_name \
|| test -f "$r"/gcc/$compiler_name$EXEEXT; then || test -f "$r"/gcc/$compiler_name$EXEEXT; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment