From 8297893f3868f52566c0f20f026cd2a3bce44681 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 19 Dec 2012 14:11:02 +0100 Subject: [PATCH] aufs: fixed kernel build by properly copying include/uapi/linux/aufs_type.h into the source tree --- filesystem/aufs/pkg_linux_post.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/filesystem/aufs/pkg_linux_post.conf b/filesystem/aufs/pkg_linux_post.conf index e6182f648..8db253147 100644 --- a/filesystem/aufs/pkg_linux_post.conf +++ b/filesystem/aufs/pkg_linux_post.conf @@ -37,6 +37,7 @@ if [ ! -z "$pkg_aufs_source_file" ]; then pkg_aufs_copy_source_files() { cp -rv $pkg_aufs_tempdir/aufs3-standalone/{Documentation,fs} . cp -rv $pkg_aufs_tempdir/aufs3-standalone/include/linux/aufs_type.h include/linux/ + cp -rv $pkg_aufs_tempdir/aufs3-standalone/include/uapi/linux/aufs_type.h include/uapi/linux/ } hook_add preconf 5 "pkg_aufs_copy_source_files"