From: Sergey Lapin Date: Wed, 11 Feb 2009 10:55:13 +0000 (+0300) Subject: lowpan-utils: fixed binaries locations X-Git-Tag: Release-2010-05/1~3976^2~14 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb404b2584f46b4fb797db5a3fdf93f8d01d2ce1;p=openembedded.git lowpan-utils: fixed binaries locations Signed-off-by: Sergey Lapin --- diff --git a/packages/lowpan-utils/lowpan-utils_git.bb b/packages/lowpan-utils/lowpan-utils_git.bb index 4dd29ee201..99fc4f55f3 100644 --- a/packages/lowpan-utils/lowpan-utils_git.bb +++ b/packages/lowpan-utils/lowpan-utils_git.bb @@ -2,30 +2,20 @@ DESCRIPTION = "LoWPAN utilities (IEEE802.15.4)" LICENSE = "GPL" SRCREV = "master" SRC_URI = "git://github.com/lumag/lowpan-utils.git;protocol=git" -DEPENDS = "libnl" -PR = "r1" +DEPENDS = "libnl bison-native flex-native" +PR = "r2" S = "${WORKDIR}/git" PACKAGES += "${PN}-tests-dbg" PACKAGES += "${PN}-tests" -FILES_${PN} = "${bindir}/iz ${sbindir}/izconfig \ - ${bindir}/izchat ${sbindir}/coordinator \ +FILES_${PN} = "${sbindir}/iz ${sbindir}/izconfig \ + ${bindir}/izchat ${bindir}/izlisten ${sbindir}/coordinator \ ${sbindir}/izattach" FILES_${PN}-tests = "${libexecdir}/zigbee" FILES_${PN}-tests-dbg = "${libexecdir}/zigbee/.debug" inherit autotools -do_install_append() { - install -d ${D}${bindir}/.debug - install -d ${D}${sbindir}/.debug - mv ${D}${libexecdir}/zigbee/iz ${D}${bindir}/ - mv ${D}${libexecdir}/zigbee/izconfig ${D}${sbindir}/ - mv ${D}${libexecdir}/zigbee/izchat ${D}${bindir}/ - mv ${D}${libexecdir}/zigbee/coordinator ${D}${sbindir}/ - mv ${D}${libexecdir}/zigbee/serial ${D}${sbindir}/izattach -} - do_stage() { autotools_stage_all }