From: Saul Wold Date: Tue, 6 Dec 2011 01:49:11 +0000 (-0800) Subject: wget: Fix wget alternative path to be /usr/bin not /bin X-Git-Tag: 2015-4~12490 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4339459bd38c75250610c4cdb767504e808c5bf0;p=openembedded-core.git wget: Fix wget alternative path to be /usr/bin not /bin Signed-off-by: Saul Wold --- diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index d9eee803ee..91400cc69e 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -3,7 +3,7 @@ SECTION = "console/network" LICENSE = "GPL" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -INC_PR = "r10" +INC_PR = "r11" inherit autotools gettext update-alternatives @@ -15,6 +15,6 @@ do_install_append () { } ALTERNATIVE_NAME = "wget" -ALTERNATIVE_LINK = "${base_bindir}/wget" -ALTERNATIVE_PATH = "${base_bindir}/wget.${PN}" +ALTERNATIVE_LINK = "${bindir}/wget" +ALTERNATIVE_PATH = "${bindir}/wget.${PN}" ALTERNATIVE_PRIORITY = "100"