You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ts...@apache.org on 2014/08/26 19:24:13 UTC

[2/2] git commit: Minor style fixes from: https://reviews.apache.org/r/24407/

Minor style fixes from: https://reviews.apache.org/r/24407/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b5b27359
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b5b27359
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/b5b27359

Branch: refs/heads/master
Commit: b5b27359045632f2bcfdccc0424167790764d082
Parents: a56be86
Author: Timothy St. Clair <ts...@redhat.com>
Authored: Tue Aug 26 12:23:02 2014 -0500
Committer: Timothy St. Clair <ts...@redhat.com>
Committed: Tue Aug 26 12:23:02 2014 -0500

----------------------------------------------------------------------
 configure.ac | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/b5b27359/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index b735282..525d304 100644
--- a/configure.ac
+++ b/configure.ac
@@ -180,17 +180,17 @@ AC_ARG_WITH([gmock],
             [without_bundled_gmock=yes], [])
 
 AC_ARG_WITH([curl],
-            AS_HELP_STRING([--with-curl=DIR],
+            AS_HELP_STRING([--with-curl=@<:@=DIR@:>@],
                            [specify where to locate the curl library]),
             [], [])
 
 AC_ARG_WITH([sasl2],
-            AS_HELP_STRING([--with-sasl=DIR],
+            AS_HELP_STRING([--with-sasl=@<:@=DIR@:>@],
                            [specify where to locate the sasl2 library]),
             [], [])
 
 AC_ARG_WITH([zlib],
-            AS_HELP_STRING([--with-zlib=DIR],
+            AS_HELP_STRING([--with-zlib=@<:@=DIR@:>@],
                            [specify where to locate the zlib library]),
             [], [])
 
@@ -569,11 +569,9 @@ ACX_PTHREAD([], [AC_MSG_ERROR([failed to find pthreads])])
 AC_CHECK_LIB(unwind, backtrace, LIBS="$LIBS -lunwind")
 
 
-# Check if Zlib prefix path was provided, and if so, add it to
+# Check if zlib prefix path was provided, and if so, add it to
 # the CPPFLAGS and LDFLAGS with respective /include and /lib path
-# suffixes
-#
-
+# suffixes.
 if test -n "`echo $with_zlib`" ; then
     CPPFLAGS="-I${with_zlib}/include $CPPFLAGS"
     LDFLAGS="-L${with_zlib}/lib $LDFLAGS"
@@ -590,9 +588,7 @@ libz is required for mesos to build.
 
 # Check if Libcurl prefix path was provided, and if so, add it to
 # the CPPFLAGS and LDFLAGS with respective /include and /lib path
-# suffixes
-#
-
+# suffixes.
 if test -n "`echo $with_curl`" ; then
     CPPFLAGS="-I${with_curl}/include $CPPFLAGS"
     LDFLAGS="-L${with_curl}/lib $LDFLAGS"
@@ -618,9 +614,7 @@ We need libsasl2 for authentication!
 
 # Check if Sasl2  prefix path was provided, and if so, add it to
 # the CPPFLAGS and LDFLAGS with respective /include and /lib path
-# suffixes
-#
-
+# suffixes.
 if test -n "`echo $with_sasl2`" ; then
     CPPFLAGS="-I${with_sasl2}/include $CPPFLAGS"
     LDFLAGS="-L${with_sasl2}/lib $LDFLAGS"