From: brarcher Date: Tue, 7 Jan 2014 03:24:44 +0000 (+0000) Subject: test_vars: add extra spaces around != X-Git-Tag: 0.10.0~170 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e730ae83d992a9ba3fc0a728a2c1e80b6c4f02ac;p=check test_vars: add extra spaces around != sh is picky about space, and without it the last part of the condition always evaluates to true. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1046 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- diff --git a/tests/test_vars.in b/tests/test_vars.in index 3bdc5f9..a0b750b 100644 --- a/tests/test_vars.in +++ b/tests/test_vars.in @@ -8,7 +8,7 @@ export HAVE_FORK # path of the tests directory if [ x"@srcdir@" != x"." ]; then - if [ -z "@IS_MSVC@" -o "@IS_MSVC@"!="1" ]; then + if [ -z "@IS_MSVC@" -o "@IS_MSVC@" != "1" ]; then SRCDIR="@srcdir@/" else SRCDIR="@srcdir@\\"