diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2015-11-01 22:46:11 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2015-11-01 22:46:11 +0100 |
commit | 9b6c17ad0172ec88bd8ea684b39bd2d38702894e (patch) | |
tree | c0cfec2cc9481b063d7f919d810a668a21d8134e | |
parent | 6606d56b73ad75576da5b33be219a5c1943f55f5 (diff) |
asterisk/dahdi-tools: Make it parsable on dora systems
In dora we do not have autotools-brokensep. Do it the old way
and set the B variable directly. At sysmocom we still use this
layer for the very old Dora release.
-rw-r--r-- | recipes-asterisk/asterisk/asterisk_13.5.0.bb | 5 | ||||
-rw-r--r-- | recipes-isdn/dahdi-tools/dahdi-tools_2.10.2.bb | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/recipes-asterisk/asterisk/asterisk_13.5.0.bb b/recipes-asterisk/asterisk/asterisk_13.5.0.bb index c912b3d..ff71607 100644 --- a/recipes-asterisk/asterisk/asterisk_13.5.0.bb +++ b/recipes-asterisk/asterisk/asterisk_13.5.0.bb @@ -17,7 +17,10 @@ SRC_URI[sha256sum] = "e8b8d071f783edea82de510194dd272070ffbb7cdb2f5f6b020be5d15b S = "${WORKDIR}/asterisk-${PV}" -inherit autotools-brokensep pkgconfig useradd update-rc.d +inherit autotools pkgconfig useradd update-rc.d + +# dora doesn't have autotools-brokensep. Still needed for sysmocom +B = "${S}" USERADD_PACKAGES = "${PN}" USERADD_PARAM_${PN} = "--system -g asterisk --shell /bin/false asterisk" diff --git a/recipes-isdn/dahdi-tools/dahdi-tools_2.10.2.bb b/recipes-isdn/dahdi-tools/dahdi-tools_2.10.2.bb index 337186d..7dec897 100644 --- a/recipes-isdn/dahdi-tools/dahdi-tools_2.10.2.bb +++ b/recipes-isdn/dahdi-tools/dahdi-tools_2.10.2.bb @@ -21,7 +21,9 @@ SRC_URI[sha256sum] = "9e904815dedab231084c542d2d7d5dcc832ebec4b5d5d999a5d757df8b S = "${WORKDIR}/${PN}-${PV}" -inherit autotools-brokensep pkgconfig perlnative cpan-base update-rc.d +inherit autotools pkgconfig perlnative cpan-base update-rc.d +# dora doesn't have autotools-brokensep. Still needed for sysmocom +B = "${S}" export DAHDI_PERLLIBDIR="${PERLLIBDIRS}/${@get_perl_version(d)}" |