diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-07-08 01:51:21 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-07-07 19:51:21 -0600 |
commit | 67a00b49d6b636472ade6a137e818bdc2c003f5f (patch) | |
tree | 6170f78f6d0f8db46c189784bcef38719a8a1f0a /gcc | |
parent | 280831b0641496194fa61479642a2c24f254670c (diff) | |
download | gcc-67a00b49d6b636472ade6a137e818bdc2c003f5f.zip gcc-67a00b49d6b636472ade6a137e818bdc2c003f5f.tar.gz gcc-67a00b49d6b636472ade6a137e818bdc2c003f5f.tar.bz2 |
configure.in: Also look at $srcdir/gas/configure to find a gas version #.
* configure.in: Also look at $srcdir/gas/configure to find a
gas version #.
From-SVN: r21004
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a8d2d5..9b3a8ef 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Jul 8 02:43:34 1998 Jeffrey A Law (law@cygnus.com) + + * configure.in: Also look at $srcdir/gas/configure to find a + gas version #. + Wed Jul 8 00:28:22 1998 Carlo Wood <carlo@runaway.xs4all.nl> * dsp16xx.h : Clean up of macro OPTIMIZATION_OPTIONS diff --git a/gcc/configure b/gcc/configure index 7cbad9b..51d341d 100755 --- a/gcc/configure +++ b/gcc/configure @@ -5228,7 +5228,7 @@ if [ -x as$host_exeext ]; then gcc_cv_as=./as$host_exeext elif [ -f $srcdir/../gas/configure.in ]; then # Single tree build which includes gas. - for f in $srcdir/../gas/configure.in $srcdir/../gas/Makefile.in + for f in $srcdir/../gas/configure $srcdir/../gas/configure.in $srcdir/../gas/Makefile.in do gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f` if [ x$gcc_cv_gas_version != x ]; then diff --git a/gcc/configure.in b/gcc/configure.in index 661d8b0..a5e96be 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -3323,7 +3323,7 @@ if [[ -x as$host_exeext ]]; then gcc_cv_as=./as$host_exeext elif [[ -f $srcdir/../gas/configure.in ]]; then # Single tree build which includes gas. - for f in $srcdir/../gas/configure.in $srcdir/../gas/Makefile.in + for f in $srcdir/../gas/configure $srcdir/../gas/configure.in $srcdir/../gas/Makefile.in do gcc_cv_gas_version=`grep '^VERSION=[[0-9]]*\.[[0-9]]*' $f` if [[ x$gcc_cv_gas_version != x ]]; then |