Fix typo in previous patch.

This commit is contained in:
Paul Eggert 2004-12-06 21:40:13 +00:00
parent 3077af0f26
commit 2c239a6336

View File

@ -773,9 +773,8 @@ 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_DEFINE([HAVE_GETMNTENT], 1,
[Define to 1 if you have the `getmntent' function.])])
AC_SEARCH_LIBS(getmntent, -lsun -lseq -lgen)
AC_CHECK_FUNCS(getmntent)
])