diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-29 23:59:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-30 00:02:10 +0100 |
commit | 80747190ccce6628ce8815cf856f6ab867a00b5d (patch) | |
tree | 07be151fe85a5cf4207b8606fbe566e339e105e5 /recipes-extended/msmtp/msmtp_1.4.12.bb | |
parent | 27eafbb395fd4f607249b2e57085012e40283926 (diff) | |
download | meta-gplv2-80747190ccce6628ce8815cf856f6ab867a00b5d.tar.gz |
meta-gplv2: Convert to new override syntax
This converts the layer to the new override syntax. This was done using
<oe-core>/scripts/contrib/convert-overrides.py <this-layer>
with no manual fixes.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'recipes-extended/msmtp/msmtp_1.4.12.bb')
-rw-r--r-- | recipes-extended/msmtp/msmtp_1.4.12.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/msmtp/msmtp_1.4.12.bb b/recipes-extended/msmtp/msmtp_1.4.12.bb index e03d432..21d9f81 100644 --- a/recipes-extended/msmtp/msmtp_1.4.12.bb +++ b/recipes-extended/msmtp/msmtp_1.4.12.bb | |||
@@ -24,12 +24,12 @@ PACKAGECONFIG[libidn] = "--with-libidn,--without-libidn,libidn" | |||
24 | 24 | ||
25 | inherit gettext autotools update-alternatives | 25 | inherit gettext autotools update-alternatives |
26 | 26 | ||
27 | ALTERNATIVE_${PN} = "sendmail" | 27 | ALTERNATIVE:${PN} = "sendmail" |
28 | ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp" | 28 | ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp" |
29 | ALTERNATIVE_LINK_NAME[sendmail] = "${sbindir}/sendmail" | 29 | ALTERNATIVE_LINK_NAME[sendmail] = "${sbindir}/sendmail" |
30 | ALTERNATIVE_PRIORITY = "100" | 30 | ALTERNATIVE_PRIORITY = "100" |
31 | 31 | ||
32 | pkg_postinst_${PN}_linuxstdbase () { | 32 | pkg_postinst:${PN}:linuxstdbase () { |
33 | # /usr/lib/sendmail is required by LSB specification | 33 | # /usr/lib/sendmail is required by LSB specification |
34 | [ ! -L $D/usr/lib/sendmail ] && ln -sf ${sbindir}/sendmail $D/usr/lib | 34 | [ ! -L $D/usr/lib/sendmail ] && ln -sf ${sbindir}/sendmail $D/usr/lib |
35 | } | 35 | } |