summaryrefslogtreecommitdiffstats
path: root/meta-multimedia
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-02-07 15:58:16 -0800
committerKhem Raj <raj.khem@gmail.com>2021-02-07 20:38:39 -0800
commitbaa819d7dde110ff6d067507a383244b7efb6e7b (patch)
treebe715a5c5c3ff0a69dc627fadcd24cd49a1a7d34 /meta-multimedia
parentd197145a6eae9d46c40844d8e6fd8ed6f7d7c36a (diff)
downloadmeta-openembedded-baa819d7dde110ff6d067507a383244b7efb6e7b.tar.gz
libsrtp: Copy ar-lib from automake
since libsrtp does not run automake, it does not get to add missing files e.g. ar-lib macro file which is needed during autoreconf, therefore copy this file from native automake to use here Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r--meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb b/meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb
index 6f349e9c8..9d4c305fc 100644
--- a/meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb
+++ b/meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb
@@ -12,6 +12,9 @@ SRC_URI = "git://github.com/cisco/libsrtp.git"
12inherit autotools pkgconfig 12inherit autotools pkgconfig
13 13
14EXTRA_OEMAKE += "shared_library" 14EXTRA_OEMAKE += "shared_library"
15EXTRA_AUTORECONF += "--exclude=automake" 15
16do_configure_prepend() {
17 cp ${STAGING_DATADIR_NATIVE}/automake-*/ar-lib ${S}
18}
16 19
17ALLOW_EMPTY_${PN} = "1" 20ALLOW_EMPTY_${PN} = "1"