diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-03-29 10:40:13 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-03-29 16:24:20 +0200 |
commit | 2fc69ae0d59af07977253a03a4b45e332a7f0cc1 (patch) | |
tree | a74921a16ef3f7eafab08d7479bd750aa8effcb7 /recipes | |
parent | 324f773851015f3396306e74b86696817254c1e8 (diff) |
libpcap.inc : fix staging of libpcap.m4
Without that fix it fails like this:
| oe_libinstall: cd ${WORKDIR}/armv6-angstrom-linux-gnueabi/libpcap-1.0.0-r6/libpcap-1.0.0
| install: cannot create regular file `${WORKDIR}/armv6-angstrom-linux-gnueabi/libpcap-1.0.0-r6/image/usr/share/aclocal/libpcap.m4': No such file or directory
NOTE: Task failed: ${WORKDIR}/armv6-angstrom-linux-gnueabi/libpcap-1.0.0-r6/temp/log.do_install.32266
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/libpcap/libpcap.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/libpcap/libpcap.inc b/recipes/libpcap/libpcap.inc index c075bbf363..140a8a03ae 100644 --- a/recipes/libpcap/libpcap.inc +++ b/recipes/libpcap/libpcap.inc @@ -4,7 +4,7 @@ SECTION = "libs/network" LICENSE = "BSD" DEPENDS = "bluez-libs flex-native bison-native" -PR = "r2" +PR = "r3" # Don't forget to edit shared.patch to have the correct version number inside SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz \ @@ -26,6 +26,7 @@ do_configure_prepend () { do_install_append () { install -d ${D}${includedir}/net + install -d ${D}${datadir}/aclocal ln -sf ../pcap-bpf.h ${D}${includedir}/net/bpf.h install -m 0644 acinclude.m4 ${D}${datadir}/aclocal/libpcap.m4 } |