]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Remove useless m4 quoting around args to PKG_CHECK_MODULES().
authorGreg Banks <gnb@melbourne.sgi.com>
Thu, 22 Jun 2006 07:19:17 +0000 (17:19 +1000)
committerGreg Banks <gnb@melbourne.sgi.com>
Thu, 22 Jun 2006 07:19:17 +0000 (17:19 +1000)
configure.in

index bcac7d85fd01f221acb67f663d2f73f480e9d1ab..9a392e8f1d99bba18952011428f0b64d7595a5f9 100644 (file)
@@ -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