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 | 51b3c82ff7fe2406d37c51217cb683465fdff784 (patch) | |
tree | 3f7292c40ad7fadf1df115eec6a38315ec25a82d /config.sub | |
parent | 94ed51e86b916990511e7e8db298c29892896730 (diff) | |
download | emacs-51b3c82ff7fe2406d37c51217cb683465fdff784.tar.gz |
if [ "$os" ] --> if [ x"$os" != x"" ]
Diffstat (limited to 'config.sub')
-rwxr-xr-x | config.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.sub b/config.sub index 9abec11c0ed..b79ce98a620 100755 --- a/config.sub +++ b/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. |