diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2001-11-20 06:38:53 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2001-11-20 06:38:53 +0000 |
commit | d8140df6915304b7fb10115af35088642f6c083d (patch) | |
tree | b82752671e7cc5a4e6d84aa35ecb60bb09517512 /gcc | |
parent | c185387d509d7d66a23d7bdf50b961c0bcbb7781 (diff) | |
download | gcc-d8140df6915304b7fb10115af35088642f6c083d.zip gcc-d8140df6915304b7fb10115af35088642f6c083d.tar.gz gcc-d8140df6915304b7fb10115af35088642f6c083d.tar.bz2 |
configure.in: Setup ability to run ./stage[1234]/xgcc in fixinc *as if* it were a proper lang...
bootstrap/4422
* configure.in: Setup ability to run ./stage[1234]/xgcc in
fixinc *as if* it were a proper lang subdirectory.
* configure: Rebuilt.
From-SVN: r47204
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4763acb..fc78ab4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 2001-11-19 Loren J. Rittle <ljrittle@acm.org> + bootstrap/4422 + * configure.in: Setup ability to run ./stage[1234]/xgcc in + fixinc *as if* it were a proper lang subdirectory. + * configure: Rebuilt. + +2001-11-19 Loren J. Rittle <ljrittle@acm.org> + * config/freebsd.h: Remove DEFAULT_VTABLE_THUNKS (again). 2001-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> diff --git a/gcc/configure b/gcc/configure index 44ecb9f..74781d6 100755 --- a/gcc/configure +++ b/gcc/configure @@ -8676,7 +8676,7 @@ esac # This is virtually a duplicate of what happens in configure.lang; we do # an extra check to make sure this only happens if ln -s can be used. if test "$symbolic_link" = "ln -s"; then - for d in .. ${subdirs} ; do + for d in .. ${subdirs} fixinc ; do if test $d != ..; then STARTDIR=`pwd` cd $d diff --git a/gcc/configure.in b/gcc/configure.in index 633050f..f50695a 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -2215,7 +2215,7 @@ esac # This is virtually a duplicate of what happens in configure.lang; we do # an extra check to make sure this only happens if ln -s can be used. if test "$symbolic_link" = "ln -s"; then - for d in .. ${subdirs} ; do + for d in .. ${subdirs} fixinc ; do if test $d != ..; then STARTDIR=`pwd` cd $d |