Skip to content

Commit

Permalink
Merge pull request #3010 from cgwalters/more-composefs-fixes
Browse files Browse the repository at this point in the history
build-sys: Really fix composefs check
  • Loading branch information
jmarrero committed Aug 25, 2023
2 parents db3b286 + 3648c5a commit bd91fda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ AM_CONDITIONAL(USE_GPGME, test "x$have_gpgme" = xyes)
dnl composefs won't work at all without this
AC_MSG_CHECKING([for MOUNT_ATTR_IDMAP])
AC_COMPILE_IFELSE(
[AC_LANG_SOURCE([[
#include <linux/mount.h>
[AC_LANG_PROGRAM([
#include <sys/mount.h>
int foo = MOUNT_ATTR_IDMAP;
]])],
#include <linux/mount.h>
],[int foo = MOUNT_ATTR_IDMAP;]
)],
[AC_MSG_RESULT(yes)
have_mount_attr_idmap=yes],
[AC_MSG_RESULT(no)])
Expand Down

0 comments on commit bd91fda

Please sign in to comment.