diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-12-23 05:14:18 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-03 12:10:51 +0000 |
commit | 275d61ce0f6e1f0613eb31beb6878c97306666f5 (patch) | |
tree | ef72ad03ed0b3f8b1c58ff40771e8cb5bfa8507f /meta | |
parent | 0a294c4aad43ecf04a40100e58050c7668f1a424 (diff) | |
download | openembedded-core-275d61ce0f6e1f0613eb31beb6878c97306666f5.tar.gz openembedded-core-275d61ce0f6e1f0613eb31beb6878c97306666f5.tar.bz2 openembedded-core-275d61ce0f6e1f0613eb31beb6878c97306666f5.zip |
btrfs-tools: add attr as dependency to fix compilation
Fixes this compilation error:
| mkfs.c:39:24: fatal error: attr/xattr.h: No such file or directory
| compilation terminated.
| make: *** [mkfs.o] Error 1
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb index 0ae570de3d..b2e503bda6 100644 --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb @@ -10,13 +10,13 @@ HOMEPAGE = "https://btrfs.wiki.kernel.org" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067" SECTION = "base" -DEPENDS = "util-linux" +DEPENDS = "util-linux attr" SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git;tag=13eced9a0c2b6bd6bc38e6f0f46a1977b1167e67;branch=master" S = "${WORKDIR}/git" -PR = "r3" +PR = "r4" SRC_URI += " file://fix_use_of_gcc.patch \ file://weak-defaults.patch " |