diff options
-rw-r--r-- | meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.6.bb | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.6.bb b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.6.bb index 1d2abb3d68..9297641c88 100644 --- a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.6.bb +++ b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.6.bb | |||
@@ -19,9 +19,18 @@ CVE_STATUS_GROUPS += "CVES_2015" | |||
19 | CVES_2015 = "CVE-2015-8270 CVE-2015-8271 CVE-2015-8272" | 19 | CVES_2015 = "CVE-2015-8270 CVE-2015-8271 CVE-2015-8272" |
20 | CVES_2015[status] = "fixed-version: patched in current git hash" | 20 | CVES_2015[status] = "fixed-version: patched in current git hash" |
21 | 21 | ||
22 | inherit autotools-brokensep | ||
23 | |||
24 | EXTRA_OEMAKE = " \ | 22 | EXTRA_OEMAKE = " \ |
25 | CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' XCFLAGS='${CFLAGS}' XLDFLAGS='${LDFLAGS}' \ | 23 | CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' XCFLAGS='${CFLAGS}' XLDFLAGS='${LDFLAGS}' \ |
26 | SYS=posix INC=-I=/usr/include DESTDIR=${D} CRYPTO=GNUTLS \ | 24 | SYS=posix INC=-I${STAGING_INCDIR} DESTDIR=${D} CRYPTO=GNUTLS \ |
27 | prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}" | 25 | prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}" |
26 | |||
27 | do_configure() { | ||
28 | } | ||
29 | |||
30 | do_compile() { | ||
31 | oe_runmake | ||
32 | } | ||
33 | |||
34 | do_install() { | ||
35 | oe_runmake install | ||
36 | } | ||