configure.ac: make --help more clear
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Fri, 8 May 2009 21:18:01 +0000 (17:18 -0400)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Fri, 8 May 2009 21:18:01 +0000 (17:18 -0400)
configure.ac

index e63477bf4af868e3daa3038209c248a0ca137309..a7f9a7398c7d18eb27d6d0dcb89c46f265b0b78b 100644 (file)
@@ -49,9 +49,9 @@ AC_C_INLINE
 AC_FUNC_MALLOC
 AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol])
 
-AC_ARG_WITH(urcu, [  --with-urcu path  Path to userspace RCU library source], URCU_PATH="$withval", AC_MSG_ERROR([Must specify liburcu path.]))
+AC_ARG_WITH(urcu, [  --with-urcu=path  Path to userspace RCU library source], URCU_PATH="$withval", AC_MSG_ERROR([Must specify liburcu path.]))
 AC_CHECK_FILE("$URCU_PATH/urcu.h", , AC_MSG_ERROR([Cannot find urcu.h in liburcu directory]))
-AC_ARG_WITH(kcompat, [  --with-kcompat path    Path to libkcompat source], KCOMPAT_PATH="$withval", AC_MSG_ERROR([Must specify libkcompat path.]))
+AC_ARG_WITH(kcompat, [  --with-kcompat=path    Path to libkcompat source], KCOMPAT_PATH="$withval", AC_MSG_ERROR([Must specify libkcompat path.]))
 AC_CHECK_FILE("$KCOMPAT_PATH/kcompat.h", , AC_MSG_ERROR([Cannot find kcompat.h in libkcompat directory]))
 AC_SUBST(URCU_PATH)
 AC_SUBST(KCOMPAT_PATH)
This page took 0.023708 seconds and 4 git commands to generate.