ti-pru-sw-examples: remove unneeded settings
authorchase maupin <chasemaupin03@gmail.com>
Wed, 22 Dec 2010 04:30:06 +0000 (04:30 +0000)
committerDenys Dmytriyenko <denys@ti.com>
Tue, 21 Dec 2010 20:48:06 +0000 (15:48 -0500)
* 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>
recipes/ti/ti-pru-sw-examples_1.00.00.bb

index 02c3376..5df6c6e 100644 (file)
@@ -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"