diff options
author | Doug Evans <dje@gnu.org> | 1993-07-16 18:24:47 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1993-07-16 18:24:47 +0000 |
commit | f3b5834778cb28c63c02c5e81fa6bdaf20ae4e12 (patch) | |
tree | 39928f53b70550cf4bf19757deaad5f5eaefac83 | |
parent | a3f6caa73fbaa863a935d110e18b89f46fdbb80c (diff) | |
download | gcc-f3b5834778cb28c63c02c5e81fa6bdaf20ae4e12.zip gcc-f3b5834778cb28c63c02c5e81fa6bdaf20ae4e12.tar.gz gcc-f3b5834778cb28c63c02c5e81fa6bdaf20ae4e12.tar.bz2 |
if [ "$os" ] --> if [ x"$os" != x"" ]
From-SVN: r4928
-rwxr-xr-x | gcc/config.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.sub b/gcc/config.sub index 9abec11..b79ce98 100755 --- a/gcc/config.sub +++ b/gcc/config.sub @@ -495,7 +495,7 @@ esac # Decode manufacturer-specific aliases for certain operating systems. -if [ "$os" ] +if [ x"$os" != x"" ] then case $os in # -solaris* is a basic system type, with this one exception. |