You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by as...@apache.org on 2017/12/19 11:25:28 UTC

svn commit: r1818651 - /subversion/trunk/build/ac-macros/utf8proc.m4

Author: astieger
Date: Tue Dec 19 11:25:28 2017
New Revision: 1818651

URL: http://svn.apache.org/viewvc?rev=1818651&view=rev
Log:
Follow-up to r1803210, remove extra "yes" in utf8proc configure output

* build/ac-macros/utf8proc.m4: Remove AC_MSG_RESULT from AC_CHECK_LIB

Modified:
    subversion/trunk/build/ac-macros/utf8proc.m4

Modified: subversion/trunk/build/ac-macros/utf8proc.m4
URL: http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/utf8proc.m4?rev=1818651&r1=1818650&r2=1818651&view=diff
==============================================================================
--- subversion/trunk/build/ac-macros/utf8proc.m4 (original)
+++ subversion/trunk/build/ac-macros/utf8proc.m4 Tue Dec 19 11:25:28 2017
@@ -53,7 +53,6 @@ AC_DEFUN(SVN_UTF8PROC_STD,
 [
   AC_MSG_NOTICE([utf8proc configuration without pkg-config])
   AC_CHECK_LIB(utf8proc, utf8proc_version, [
-    AC_MSG_RESULT([yes])
      utf8proc_found=yes
      SVN_UTF8PROC_LIBS="-lutf8proc"
   ])
@@ -67,7 +66,6 @@ AC_DEFUN(SVN_UTF8PROC_PREFIX,
   save_ldflags="$LDFLAGS"
   LDFLAGS="$LDFLAGS -L$utf8proc_prefix/lib"
   AC_CHECK_LIB(utf8proc, utf8proc_version, [
-    AC_MSG_RESULT([yes])
     utf8proc_found=yes
     SVN_UTF8PROC_INCLUDES="-I$utf8proc_prefix/include"
     SVN_UTF8PROC_LIBS="`SVN_REMOVE_STANDARD_LIB_DIRS(-L$utf8proc_prefix/lib)` -lutf8proc"