diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-11-24 16:33:06 +0000 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-11-24 16:33:06 +0000 |
commit | 880e00d3b7ccf66d9421a06bc28e553e07842b59 (patch) | |
tree | 9baf629ad0d3ab138843de9e7df7e54b6218830d /recipes/libnl | |
parent | 98485cecadc9e7ce84dc5f4fe54bdbca106d708b (diff) |
libnl2: change includedir to not step over libnl1; also convert to new staging
Diffstat (limited to 'recipes/libnl')
-rw-r--r-- | recipes/libnl/libnl2_git.bb | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/recipes/libnl/libnl2_git.bb b/recipes/libnl/libnl2_git.bb index 02010dc58d..9e2c3d7ecc 100644 --- a/recipes/libnl/libnl2_git.bb +++ b/recipes/libnl/libnl2_git.bb @@ -3,21 +3,18 @@ SECTION = "libs/network" LICENSE = "LGPL" HOMEPAGE = "http://people.suug.ch/~tgr/libnl" PV = "1.0+gitr${SRCREV}" -PR = "r0" +PR = "r1" -inherit autotools pkgconfig +inherit autotools #CFLAGS += '-DVLAN_FLAG_REORDER_HDR=1' +includedir = ${prefix}/include/libnl2 + SRC_URI = "git://git.kernel.org/pub/scm/libs/netlink/libnl.git;protocol=git" S = "${WORKDIR}/git" -do_stage () { - autotools_stage_all prefix=${prefix} -} - PACKAGES =+ "${PN}-route ${PN}-nf ${PN}-genl" FILES_${PN}-route = "${libdir}/libnl-route.so.*" -FILES_${PN}-nf = "${libdir}/libnl-nfd.so.*" +FILES_${PN}-nf = "${libdir}/libnl-nf.so.*" FILES_${PN}-genl = "${libdir}/libnl-genl.so.*" - |