diff options
author | Zibo Zhao <zibo.zhao@windriver.com> | 2014-09-23 14:56:43 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-09-25 08:17:20 -0400 |
commit | 97e1bb100c13e99054d1b6f33c489686ebb2d527 (patch) | |
tree | 9fb84b65c1649cf0072294086ed5f36c5fb4012d | |
parent | 0bf1cabe6bfffc962f1214064c086a63ee81af05 (diff) | |
download | meta-virtualization-97e1bb100c13e99054d1b6f33c489686ebb2d527.tar.gz |
Add udev dependency for multipath-tools package
mutipath-tools package has build time dependency on udev.
Without it, following build error will occur:
| discovery.c:14:21: fatal error: libudev.h: No such file or directory
| compilation terminated.
| make[1]: *** [discovery.o] Error 1
| make[1]: *** Waiting for unfinished jobs....
| config.c:8:21: fatal error: libudev.h: No such file or directory
| compilation terminated.
| make[1]: *** [config.o] Error 1
| structs.c:8:21: fatal error: libudev.h: No such file or directory
| compilation terminated.
| make[1]: *** [structs.o] Error 1
Add udev into DEPENDS to avoid build failures.
Signed-off-by: Zibo Zhao <zibo.zhao@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-extended/multipath-tools/multipath-tools_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/multipath-tools/multipath-tools_git.bb b/recipes-extended/multipath-tools/multipath-tools_git.bb index e2076d36..9ba5cd65 100644 --- a/recipes-extended/multipath-tools/multipath-tools_git.bb +++ b/recipes-extended/multipath-tools/multipath-tools_git.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "This package provides the tools to manage multipathed devices by | |||
3 | instructing the device-mapper multipath module what to do" | 3 | instructing the device-mapper multipath module what to do" |
4 | 4 | ||
5 | HOMEPAGE = "http://christophe.varoqui.free.fr/" | 5 | HOMEPAGE = "http://christophe.varoqui.free.fr/" |
6 | DEPENDS = "readline libaio lvm2" | 6 | DEPENDS = "readline libaio lvm2 udev" |
7 | LICENSE = "GPLv2" | 7 | LICENSE = "GPLv2" |
8 | 8 | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d" | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d" |