diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-27 21:28:46 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-27 21:28:46 -0500 |
commit | ba1f0326a3d3c60ea8e1ce7d30047733ecf42b34 (patch) | |
tree | 8798b6a11529eb4548bac67f98a1562f705b6e2d | |
parent | b6eb802a9bac23d5a31dd59c2ba3d7928b31a326 (diff) | |
download | gcc-ba1f0326a3d3c60ea8e1ce7d30047733ecf42b34.zip gcc-ba1f0326a3d3c60ea8e1ce7d30047733ecf42b34.tar.gz gcc-ba1f0326a3d3c60ea8e1ce7d30047733ecf42b34.tar.bz2 |
(unixware, svr4): Treat as synonyms for sysv4.
From-SVN: r8833
-rwxr-xr-x | gcc/config.sub | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config.sub b/gcc/config.sub index 35c9d74..fac9f67 100755 --- a/gcc/config.sub +++ b/gcc/config.sub @@ -1,6 +1,6 @@ #!/bin/sh # Configuration validation subroutine script, version 1.1. -# Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. @@ -586,6 +586,9 @@ case $os in -solaris) os=-solaris2 ;; + -unixware* | svr4*) + os=-sysv4 + ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux|'` ;; |