build: remove unnecessary m4_flatten

automake can cope with it as-is.

Signed-off-by: Jan Engelhardt <jengelh@inai.de>
This commit is contained in:
Jan Engelhardt 2012-12-12 03:52:24 +01:00
parent 07b815d395
commit b1bce4d3b7

View File

@ -33,7 +33,7 @@ AM_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([mkfs/f2fs_format.c])
AC_CHECK_HEADERS_ONCE(m4_flatten([
AC_CHECK_HEADERS_ONCE([
fcntl.h
mntent.h
stdlib.h
@ -41,7 +41,7 @@ AC_CHECK_HEADERS_ONCE(m4_flatten([
unistd.h
sys/ioctl.h
sys/mount.h
]))
])
# Checks for programs.
AC_PROG_CC
@ -64,15 +64,15 @@ AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_GETMNTENT
AC_CHECK_FUNCS_ONCE(m4_flatten([
AC_CHECK_FUNCS_ONCE([
getmntent
memset
]))
])
AC_CONFIG_FILES(m4_flatten([
AC_CONFIG_FILES([
Makefile
man/Makefile
mkfs/Makefile
]))
])
AC_OUTPUT