mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
- Bug fixes. (From OE-Core rev: e9d5ac91207ee2bc3ce99c16a2b41134eb709139) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
635 B
BlitzBasic
23 lines
635 B
BlitzBasic
require libpcap.inc
|
|
|
|
SRC_URI += "file://aclocal.patch"
|
|
SRC_URI[md5sum] = "5f14191c1a684a75532c739c2c4059fa"
|
|
SRC_URI[sha256sum] = "5db3e2998f1eeba2c76da55da5d474248fe19c44f49e15cac8a796a2c7e19690"
|
|
|
|
#
|
|
# make install doesn't cover the shared lib
|
|
# make install-shared is just broken (no symlinks)
|
|
#
|
|
|
|
do_configure_prepend () {
|
|
#remove hardcoded references to /usr/include
|
|
sed 's|\([ "^'\''I]\+\)/usr/include/|\1${STAGING_INCDIR}/|g' -i ${S}/configure.in
|
|
}
|
|
|
|
do_install_prepend () {
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${bindir}
|
|
oe_runmake install-shared DESTDIR=${D}
|
|
oe_libinstall -a -so libpcap ${D}${libdir}
|
|
}
|