]> granicus.if.org Git - check/commitdiff
test_vars: add extra spaces around !=
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 7 Jan 2014 03:24:44 +0000 (03:24 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 7 Jan 2014 03:24:44 +0000 (03:24 +0000)
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

tests/test_vars.in

index 3bdc5f9d1a612ee0a5dd3734555ed5ea0772b5c2..a0b750b9fee9815ef131963f683caa9f8277e023 100644 (file)
@@ -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@\\"