Skip to content

Commit

Permalink
libeigen: fix splitting files into packages
Browse files Browse the repository at this point in the history
Assign ${includedir} to FILES_${PN}-dev (instead of into FILES_${PN}),
as the headers belong to the -dev package and it is done the same way
in boost.

Signed-off-by: Adam Trhon <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
adam-trhon authored and kraj committed May 29, 2018
1 parent ecdf58a commit 1bc3e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meta-oe/recipes-support/libeigen/libeigen_3.3.4.bb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ S = "${WORKDIR}/eigen-eigen-5a0156e40feb"

inherit cmake

FILES_${PN} = "${includedir} ${libdir}"
FILES_${PN}-dev = "${datadir}/eigen3/cmake ${datadir}/cmake/Modules ${datadir}/pkgconfig"
FILES_${PN} = "${libdir}"
FILES_${PN}-dev = "${includedir} ${datadir}/eigen3/cmake ${datadir}/cmake/Modules ${datadir}/pkgconfig"

# ${PN} is empty so we need to tweak -dev and -dbg package dependencies
RDEPENDS_${PN}-dev = ""
Expand Down

0 comments on commit 1bc3e98

Please sign in to comment.