You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2019/01/03 18:20:00 UTC

svn commit: r1850257 - /subversion/trunk/configure.ac

Author: danielsh
Date: Thu Jan  3 18:20:00 2019
New Revision: 1850257

URL: http://svn.apache.org/viewvc?rev=1850257&view=rev
Log:
* configure.ac: Use the POSIX string equality operator.

On my system, that's required:
.
    % sh -c 'test x == y; echo $?' 
    sh: 1: test: x: unexpected operator
    2
    %
    % sh -c 'test x = y; echo $?' 
    1
    % 

Modified:
    subversion/trunk/configure.ac

Modified: subversion/trunk/configure.ac
URL: http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=1850257&r1=1850256&r2=1850257&view=diff
==============================================================================
--- subversion/trunk/configure.ac (original)
+++ subversion/trunk/configure.ac Thu Jan  3 18:20:00 2019
@@ -1489,7 +1489,7 @@ else
     SVN_BUILD_SVNXX_TESTS=false
 fi
 
-if test "$do_svnxx_build" == "yes"; then
+if test "$do_svnxx_build" = "yes"; then
     SVN_BUILD_SVNXX=true
 else
     SVN_BUILD_SVNXX=false