From: chase maupin Date: Wed, 22 Dec 2010 04:30:06 +0000 (+0000) Subject: ti-pru-sw-examples: remove unneeded settings X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c5bf4b3318017ba14c3db7063ea3e1bdfa92cec;p=openembedded.git ti-pru-sw-examples: remove unneeded settings * Remove unneeded settings in the do_compile function. Variables were being set to point to non-existent locations in the ${D} directory. Since the files requires were already staged by other packages these variables do not need to be set. * Bump the PR Signed-off-by: Chase Maupin Signed-off-by: Denys Dmytriyenko --- diff --git a/recipes/ti/ti-pru-sw-examples_1.00.00.bb b/recipes/ti/ti-pru-sw-examples_1.00.00.bb index 02c3376bf1..5df6c6e436 100644 --- a/recipes/ti/ti-pru-sw-examples_1.00.00.bb +++ b/recipes/ti/ti-pru-sw-examples_1.00.00.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/" LICENSE = "BSD" DEPENDS += "ti-pru-sw-app-loader ti-pru-sw-edma-library" RDEPENDS += "ti-pru-sw-edma-driver kernel-module-uio-pru" -PR = "r1+svnr${SRCPV}" +PR = "r2+svnr${SRCPV}" COMPATIBLE_MACHINE = "omapl138" @@ -13,11 +13,8 @@ SRCREV = "20" S = "${WORKDIR}/trunk" do_compile () { - make -C ${S}/example_apps LIBDIR_APP_LOADER="${D}${libdir}" \ + make -C ${S}/example_apps \ CC=${TOOLCHAIN_PATH}/bin/${TARGET_PREFIX}gcc \ - LIBDIR_EDMA_LOADER="${D}${libdir}}" \ - INCDIR_APP_LOADER="${D}${includedir}" \ - INCDIR_EDMA_DRIVER="${D}${includedir}" \ BINDIR_APPLICATIONS="${S}/example_apps/bin" \ BINDIR_FW="${S}/example_apps/bin" \ UTILS_DIR="${S}/utils"