diff options
-rw-r--r-- | meta-oe/recipes-support/multipath-tools/multipath-tools_git.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_git.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_git.bb index 6706bec59e..effd92e4eb 100644 --- a/meta-oe/recipes-support/multipath-tools/multipath-tools_git.bb +++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_git.bb | |||
@@ -27,6 +27,14 @@ PV = "0.6.4+git${@'${SRCPV}'.split('+')[-1]}" | |||
27 | 27 | ||
28 | TARGET_CC_ARCH += "${LDFLAGS}" | 28 | TARGET_CC_ARCH += "${LDFLAGS}" |
29 | 29 | ||
30 | # multipath-tools includes a copy of the valgrind.h header | ||
31 | # file and uses the macros to suppress some false positives. However, | ||
32 | # that only works on ARM when thumb is disabled. Otherwise one gets: | ||
33 | # Error: shifts in CMP/MOV instructions are only supported in unified syntax -- `mov r12,r12,ror#3' | ||
34 | # ../Makefile.inc:66: recipe for target 'debug.o' failed | ||
35 | ARM_INSTRUCTION_SET_armv4 = "arm" | ||
36 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
37 | |||
30 | # The exact version of SYSTEMD does not matter but should be greater than 209. | 38 | # The exact version of SYSTEMD does not matter but should be greater than 209. |
31 | # | 39 | # |
32 | EXTRA_OEMAKE = 'MULTIPATH_VERSION=${PV} DESTDIR=${D} syslibdir=${base_libdir} \ | 40 | EXTRA_OEMAKE = 'MULTIPATH_VERSION=${PV} DESTDIR=${D} syslibdir=${base_libdir} \ |
@@ -59,5 +67,3 @@ FILES_kpartx = "${base_sbindir}/kpartx \ | |||
59 | " | 67 | " |
60 | 68 | ||
61 | RDEPENDS_${PN} += "kpartx" | 69 | RDEPENDS_${PN} += "kpartx" |
62 | |||
63 | PNBLACKLIST[multipath-tools] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/130529/" | ||