summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/pktlib
diff options
context:
space:
mode:
authorSam Nelson <sam.nelson@ti.com>2015-01-10 01:55:07 +0000
committerDenys Dmytriyenko <denys@ti.com>2015-01-09 14:35:47 -0500
commit160d356e18fb1a16592fee21a8959bf58ec3659c (patch)
tree898785e024d7efe4772cf358c4b1620f1d0e17df /recipes-bsp/pktlib
parentb9031f04a38451cd14f7acc42db2a802723acd17 (diff)
downloadmeta-ti-160d356e18fb1a16592fee21a8959bf58ec3659c.tar.gz
pktlib: Update to explicitly include compile and install steps
- without this the compilation and install doesnot happen because of main make filename. - Correct mistake on extra oemake options Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/pktlib')
-rw-r--r--recipes-bsp/pktlib/pktlib_git.bb10
1 files changed, 8 insertions, 2 deletions
diff --git a/recipes-bsp/pktlib/pktlib_git.bb b/recipes-bsp/pktlib/pktlib_git.bb
index df68f762..aa219749 100644
--- a/recipes-bsp/pktlib/pktlib_git.bb
+++ b/recipes-bsp/pktlib/pktlib_git.bb
@@ -14,6 +14,12 @@ PV = "2.1.0.4"
14 14
15S = "${WORKDIR}/git/ti/runtime/pktlib" 15S = "${WORKDIR}/git/ti/runtime/pktlib"
16 16
17EXTRA_OEMAKE += "-f make=file_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}" 17EXTRA_OEMAKE += "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}"
18 18
19MAKE_TARGETS = "lib" 19do_compile () {
20 oe_runmake lib
21}
22
23do_install () {
24 oe_runmake install
25}