diff options
author | Jim Meyering <jim@meyering.net> | 2000-05-24 07:49:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-05-24 07:49:09 +0000 |
commit | 429093f9adbc4abc7b06fd8884189d9b84c2ae00 (patch) | |
tree | f78e2376e805e9c828d6993711dd6c28719fd057 /m4 | |
parent | 35aaf0b09d48cc423677590bbad749e15bd8fc90 (diff) | |
download | coreutils-429093f9adbc4abc7b06fd8884189d9b84c2ae00.tar.xz |
(jm_LIB_CHECK): Use []-quoted list in
AC_CHECK_MEMBERS, now that autoconf requires that.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/lib-check.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/lib-check.m4 b/m4/lib-check.m4 index 4439b779a..0e4cc3a47 100644 --- a/m4/lib-check.m4 +++ b/m4/lib-check.m4 @@ -1,4 +1,4 @@ -#serial 3 +#serial 4 dnl Misc lib-related macros for fileutils, sh-utils, textutils. @@ -51,7 +51,7 @@ $ac_includes_default # include <shadow.h> #endif " - AC_CHECK_MEMBERS((struct spwd.sp_pwdp),,,[$shadow_includes]) + AC_CHECK_MEMBERS([struct spwd.sp_pwdp],,,[$shadow_includes]) AC_CHECK_FUNCS(getspnam) # SCO-ODT-3.0 is reported to need -lufc for crypt. |