]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
(AC_FUNC_GETMNTENT): Fix typo in previous patch: extra "-l"s.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 7 Dec 2004 18:22:45 +0000 (18:22 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 7 Dec 2004 18:22:45 +0000 (18:22 +0000)
lib/autoconf/functions.m4

index 228b808a3aa27752960c96bb0732be361fa30fa4..e777372b76ae332f9ff7a469e87201934eccf8e3 100644 (file)
@@ -773,7 +773,7 @@ AN_FUNCTION([getmntent], [AC_FUNC_GETMNTENT])
 AC_DEFUN([AC_FUNC_GETMNTENT],
 [# getmntent is in the standard C library on UNICOS, in -lsun on Irix 4,
 # -lseq on Dynix/PTX, -lgen on Unixware.
-AC_SEARCH_LIBS(getmntent, -lsun -lseq -lgen, [AC_CHECK_FUNCS(getmntent)])
+AC_SEARCH_LIBS(getmntent, [sun seq gen], [AC_CHECK_FUNCS(getmntent)])
 ])