summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGreg Banks <gnb@melbourne.sgi.com>2006-06-22 17:19:17 +1000
committerGreg Banks <gnb@melbourne.sgi.com>2006-06-22 17:19:17 +1000
commitdcfcb677b39443b6392db3234fd50498bc158507 (patch)
tree5128e4e4f7127d5d01408fcde444e51ffe671edf /configure.in
parent24d303ffae686192bda0a5996e8590219dcc82e7 (diff)
downloadnfs-utils-dcfcb677b39443b6392db3234fd50498bc158507.tar.gz
nfs-utils-dcfcb677b39443b6392db3234fd50498bc158507.tar.xz
nfs-utils-dcfcb677b39443b6392db3234fd50498bc158507.zip
Remove useless m4 quoting around args to PKG_CHECK_MODULES().
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index bcac7d8..9a392e8 100644
--- a/configure.in
+++ b/configure.in
@@ -158,13 +158,13 @@ if test "$enable_nfsv4" = yes; then
dnl librpcsecgss already has a dependency on libgssapi,
dnl but we need to make sure we get the right version
if test "$enable_gss" = yes; then
- PKG_CHECK_MODULES([RPCSECGSS], [librpcsecgss >= 0.10], [],
+ PKG_CHECK_MODULES(RPCSECGSS, librpcsecgss >= 0.10, ,
[AC_MSG_ERROR([Unable to locate information required to use librpcsecgss.])
AC_MSG_ERROR([If you have pkgconfig installed, you might try setting environment])
AC_MSG_ERROR([variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])
]
)
- PKG_CHECK_MODULES([GSSAPI], [libgssapi >= 0.9])
+ PKG_CHECK_MODULES(GSSAPI, libgssapi >= 0.9)
fi
fi