aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti
diff options
context:
space:
mode:
authorchase maupin <chasemaupin03@gmail.com>2010-12-22 04:30:06 +0000
committerDenys Dmytriyenko <denys@ti.com>2010-12-21 15:48:06 -0500
commit5c5bf4b3318017ba14c3db7063ea3e1bdfa92cec (patch)
tree4eb87059ace266edc0fd91c0c3c94070b16ffcc0 /recipes/ti
parentb3cf1d3ddb9f50a1f08a11116bd121ed2fdf8b03 (diff)
downloadopenembedded-5c5bf4b3318017ba14c3db7063ea3e1bdfa92cec.tar.gz
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 <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes/ti')
-rw-r--r--recipes/ti/ti-pru-sw-examples_1.00.00.bb7
1 files changed, 2 insertions, 5 deletions
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"