diff options
author | John Hughes <john@Calva.COM> | 1998-09-05 06:58:40 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-05 06:58:40 -0600 |
commit | c5ce8032ad281e80ad125831d21e1b349ac1f2af (patch) | |
tree | 99c22ada7470a9d654bd9a8e03356f5625ad7500 /configure.in | |
parent | ab03db526f8133e41f83226c0cc45c9f3b62f501 (diff) | |
download | gcc-c5ce8032ad281e80ad125831d21e1b349ac1f2af.tar.gz |
configure.in: Do not assume x86-svr4 or x86-unixware can handle stabs.
8
* configure.in: Do not assume x86-svr4 or x86-unixware can handle
stabs.
From-SVN: r22264
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 0cd3754d2d6..57ce57d9cca 100644 --- a/configure.in +++ b/configure.in @@ -438,7 +438,7 @@ if [ x${with_stabs} = x ]; then case "${target}" in mips*-*-irix6*) ;; - mips*-*-* | alpha*-*-osf* | i[3456]86*-*-sysv4* | i[3456]86*-*-unixware*) + mips*-*-* | alpha*-*-osf*) with_stabs=yes; withoptions="${withoptions} --with-stabs" ;; |