diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-07 15:58:16 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-02-07 20:38:39 -0800 |
commit | baa819d7dde110ff6d067507a383244b7efb6e7b (patch) | |
tree | be715a5c5c3ff0a69dc627fadcd24cd49a1a7d34 /meta-multimedia/recipes-support | |
parent | d197145a6eae9d46c40844d8e6fd8ed6f7d7c36a (diff) | |
download | meta-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/recipes-support')
-rw-r--r-- | meta-multimedia/recipes-support/libsrtp/libsrtp_2.3.0.bb | 5 |
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 6f349e9c81..9d4c305fc7 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" | |||
12 | inherit autotools pkgconfig | 12 | inherit autotools pkgconfig |
13 | 13 | ||
14 | EXTRA_OEMAKE += "shared_library" | 14 | EXTRA_OEMAKE += "shared_library" |
15 | EXTRA_AUTORECONF += "--exclude=automake" | 15 | |
16 | do_configure_prepend() { | ||
17 | cp ${STAGING_DATADIR_NATIVE}/automake-*/ar-lib ${S} | ||
18 | } | ||
16 | 19 | ||
17 | ALLOW_EMPTY_${PN} = "1" | 20 | ALLOW_EMPTY_${PN} = "1" |