diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-12-07 18:44:07 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-12-07 18:44:07 +0000 |
commit | c2f3ca32d29b346aa0f8db87f746d36f0792423c (patch) | |
tree | 7be5d3a15aa255afbb10b6d90a89d671b3d77d80 /m4 | |
parent | 1a55542a7cb68466dd652c337a7d5425b897822a (diff) | |
download | coreutils-c2f3ca32d29b346aa0f8db87f746d36f0792423c.tar.xz |
(AC_FUNC_GETMNTENT): Fix typo in previous change:
spurious "-l"s.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ls-mntd-fs.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ls-mntd-fs.m4 b/m4/ls-mntd-fs.m4 index 68631a95c..2eca0736e 100644 --- a/m4/ls-mntd-fs.m4 +++ b/m4/ls-mntd-fs.m4 @@ -1,4 +1,4 @@ -#serial 18 +#serial 19 # How to list mounted file systems. # Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software @@ -30,7 +30,7 @@ dnl 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)]) ]) # gl_LIST_MOUNTED_FILE_SYSTEMS([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) |