diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2015-06-26 10:34:42 +0200 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2015-06-26 14:02:40 +0200 |
commit | e57a592d35273f1e5ba5c944b8bc87efb9503c32 (patch) | |
tree | 4406c14f3b98cd84cf7f6735eff11fe6ecc6fe08 | |
parent | bbe41fae444e58c98db64db20114418ec78b99d6 (diff) |
Replace unportable test(1) operator.
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 70ed3a6..55b2345 100644 --- a/configure.ac +++ b/configure.ac @@ -135,7 +135,7 @@ case $host_os in AC_DEFINE(VMMOUSE_OS_BSD, 1, [Building for BSD flavour]) ;; solaris*) - if test "x$GCC" == "xyes"; then + if test "x$GCC" = "xyes"; then CC="$save_solaris_cc -fms-extensions" fi AC_DEFINE(VMMOUSE_OS_SOLARIS, 1, [Building for Solaris flavour]) |