mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
aclocal.patch was updated, still needed. (From OE-Core rev: 89f9d07d8e291c994469d015d39ef90fb39a4ec4) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
714 B
BlitzBasic
28 lines
714 B
BlitzBasic
require libpcap.inc
|
|
|
|
PR = "${INC_PR}.0"
|
|
|
|
SRC_URI += "file://aclocal.patch \
|
|
file://ieee80215-arphrd.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "33ba2f10f3a402cb5d34f5e2a904794a"
|
|
SRC_URI[sha256sum] = "806d4ba23b126476d39a458ad1468f73dfe63c92f9586208f7e4e18c13e52ddd"
|
|
|
|
#
|
|
# 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}
|
|
}
|