diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-05-22 12:37:27 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-30 10:43:41 +0100 |
commit | 7e5c325df40012cf21cbbf9a38f4d476f62d7100 (patch) | |
tree | 5f5194234d57bbecb679e0f9d668dc0aa73e812b /meta/recipes-extended | |
parent | 3ddf0dbfe5b0dae2baa2719aa96f0bdea1fe7b80 (diff) | |
download | openembedded-core-7e5c325df40012cf21cbbf9a38f4d476f62d7100.tar.gz openembedded-core-7e5c325df40012cf21cbbf9a38f4d476f62d7100.tar.bz2 openembedded-core-7e5c325df40012cf21cbbf9a38f4d476f62d7100.zip |
wget: use BPN for alternatives
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index d56216f071..4e1e931774 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -11,10 +11,10 @@ inherit autotools gettext update-alternatives EXTRA_OECONF = "--with-libc --enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} --with-ssl=openssl --disable-rpath" do_install_append () { - mv ${D}${bindir}/wget ${D}${bindir}/wget.${PN} + mv ${D}${bindir}/wget ${D}${bindir}/wget.${BPN} } ALTERNATIVE_NAME = "wget" ALTERNATIVE_LINK = "${bindir}/wget" -ALTERNATIVE_PATH = "${bindir}/wget.${PN}" +ALTERNATIVE_PATH = "${bindir}/wget.${BPN}" ALTERNATIVE_PRIORITY = "100" |