From d9d79dd5246dab32544f886f2b3c6e88be137e93 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 19 Dec 2012 16:36:41 +0100 Subject: [PATCH] aufs: fixed to get the aufs_type.h installed when building linux-header package --- filesystem/aufs/pkg_linux_post.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/filesystem/aufs/pkg_linux_post.conf b/filesystem/aufs/pkg_linux_post.conf index 8db253147..ac8988884 100644 --- a/filesystem/aufs/pkg_linux_post.conf +++ b/filesystem/aufs/pkg_linux_post.conf @@ -38,6 +38,8 @@ if [ ! -z "$pkg_aufs_source_file" ]; then 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/ + # get header installed when building linux-header package + echo "header-y += aufs_type.h" >> include/uapi/linux/Kbuild } hook_add preconf 5 "pkg_aufs_copy_source_files"