diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-07-26 17:34:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:36 +0100 |
commit | 7d9c0be579bf2ab5984a7d906ea00e69f3d40090 (patch) | |
tree | 3580574553b34f8d55a125b1603f088ef37ac30b /meta/recipes-extended/sed/sed_4.2.1.bb | |
parent | 5230b712a882414237344f229aff5d20ddf7d13b (diff) | |
download | poky-7d9c0be579bf2ab5984a7d906ea00e69f3d40090.tar.gz |
sed: cleanup update-alternatives deprecated code
(From OE-Core rev: c42bff2e0718c40d87b91672bec76c63e4c91c0a)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sed/sed_4.2.1.bb')
-rw-r--r-- | meta/recipes-extended/sed/sed_4.2.1.bb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta/recipes-extended/sed/sed_4.2.1.bb b/meta/recipes-extended/sed/sed_4.2.1.bb index b39eca0bc0..96c509a170 100644 --- a/meta/recipes-extended/sed/sed_4.2.1.bb +++ b/meta/recipes-extended/sed/sed_4.2.1.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPLv3+" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ |
5 | file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f" | 5 | file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f" |
6 | SECTION = "console/utils" | 6 | SECTION = "console/utils" |
7 | PR = "r3" | 7 | PR = "r5" |
8 | 8 | ||
9 | SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" | 9 | SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" |
10 | 10 | ||
@@ -18,13 +18,12 @@ EXTRA_OECONF = "--disable-acl" | |||
18 | do_install () { | 18 | do_install () { |
19 | autotools_do_install | 19 | autotools_do_install |
20 | install -d ${D}${base_bindir} | 20 | install -d ${D}${base_bindir} |
21 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${BPN} | 21 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed |
22 | rmdir ${D}${bindir}/ | 22 | rmdir ${D}${bindir}/ |
23 | } | 23 | } |
24 | 24 | ||
25 | ALTERNATIVE_NAME = "sed" | 25 | ALTERNATIVE_${PN} = "sed" |
26 | ALTERNATIVE_PATH = "sed.${BPN}" | 26 | ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed" |
27 | ALTERNATIVE_LINK = "${base_bindir}/sed" | ||
28 | ALTERNATIVE_PRIORITY = "100" | 27 | ALTERNATIVE_PRIORITY = "100" |
29 | 28 | ||
30 | BBCLASSEXTEND = "native" | 29 | BBCLASSEXTEND = "native" |