diff options
author | Christopher Larson <chris_larson@mentor.com> | 2014-09-02 17:00:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-22 13:04:22 +0100 |
commit | 93f7d098e569723230728a74a461c648452d463e (patch) | |
tree | 934d33a2d53681c7f4fdc54e6ed9b6772502916f /meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb | |
parent | eb5572023142be9db72520d2d91db5e18d268705 (diff) | |
download | poky-93f7d098e569723230728a74a461c648452d463e.tar.gz |
irda-utils: obey LDFLAGS
While we're at it, also switch to explicit variable passing rather than
relying on make -e, and pass V=1 so the actual commands hit the logs.
(From OE-Core rev: 7106f840b7d2a71171131c3c3e5fc311718ca718)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb')
-rw-r--r-- | meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb index 7403dc95da..21891b2d69 100644 --- a/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb +++ b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb | |||
@@ -12,21 +12,29 @@ LIC_FILES_CHKSUM = "file://irdadump/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f | |||
12 | file://irdadump/irdadump.c;beginline=1;endline=24;md5=d78b9dce3cd78c2220250c9c7a2be178" | 12 | file://irdadump/irdadump.c;beginline=1;endline=24;md5=d78b9dce3cd78c2220250c9c7a2be178" |
13 | 13 | ||
14 | SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \ | 14 | SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \ |
15 | file://init" | 15 | file://ldflags.patch \ |
16 | file://init" | ||
16 | 17 | ||
17 | SRC_URI[md5sum] = "84dc12aa4c3f61fccb8d8919bf4079bb" | 18 | SRC_URI[md5sum] = "84dc12aa4c3f61fccb8d8919bf4079bb" |
18 | SRC_URI[sha256sum] = "61980551e46b2eaa9e17ad31cbc1a638074611fc33bff34163d10c7a67a9fdc6" | 19 | SRC_URI[sha256sum] = "61980551e46b2eaa9e17ad31cbc1a638074611fc33bff34163d10c7a67a9fdc6" |
19 | 20 | ||
20 | export SYS_INCLUDES="-I${STAGING_INCDIR}" | ||
21 | |||
22 | inherit autotools-brokensep update-rc.d | 21 | inherit autotools-brokensep update-rc.d |
23 | 22 | ||
23 | EXTRA_OEMAKE = "\ | ||
24 | 'CC=${CC}' \ | ||
25 | 'LD=${LD}' \ | ||
26 | 'CFLAGS=${CFLAGS}' \ | ||
27 | 'LDFLAGS=${LDFLAGS}' \ | ||
28 | 'SYS_INCLUDES=' \ | ||
29 | 'V=1' \ | ||
30 | " | ||
31 | |||
24 | INITSCRIPT_NAME = "irattach" | 32 | INITSCRIPT_NAME = "irattach" |
25 | INITSCRIPT_PARAMS = "defaults 20" | 33 | INITSCRIPT_PARAMS = "defaults 20" |
26 | 34 | ||
27 | do_compile () { | 35 | do_compile () { |
28 | oe_runmake -e -C irattach | 36 | oe_runmake -C irattach |
29 | oe_runmake -e -C irdaping | 37 | oe_runmake -C irdaping |
30 | } | 38 | } |
31 | 39 | ||
32 | do_install () { | 40 | do_install () { |