* [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir
@ 2012-01-08 18:04 Andreas Müller
2012-01-08 18:04 ` [PATCH 1/2] libusb1: " Andreas Müller
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Andreas Müller @ 2012-01-08 18:04 UTC (permalink / raw)
To: openembedded-core
libusb-compat did not yet cause a build error but it is motivated by the
experience with libusb1.
I will be out until 12. and can not respond on comments until then.
Andreas Müller (2):
libusb1: keep *.la in base_libdir
libusb-compat: keep *.la in base_libdir
meta/recipes-support/libusb/libusb-compat_0.1.3.bb | 3 +--
meta/recipes-support/libusb/libusb1_1.0.8.bb | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
--
1.7.4.4
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/2] libusb1: keep *.la in base_libdir
2012-01-08 18:04 [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir Andreas Müller
@ 2012-01-08 18:04 ` Andreas Müller
2012-01-08 18:04 ` [PATCH 2/2] libusb-compat: " Andreas Müller
2012-01-12 6:38 ` [PATCH 0/2] libusb1/libusb-compat " Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Andreas Müller @ 2012-01-08 18:04 UTC (permalink / raw)
To: openembedded-core
This fixes the following error found during build from scratch for
meta-oe / obexd:
| arm-angstrom-linux-gnueabi-libtool: link: cannot find the library
| `/home/Superandy/tmp/oe-core-eglibc/sysroots/overo/lib/libusb-1.0.la' or
| unhandled argument `=/lib/libusb-1.0.la'
build-tested from scratch in angstrom environment.
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
meta/recipes-support/libusb/libusb1_1.0.8.bb | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-support/libusb/libusb1_1.0.8.bb b/meta/recipes-support/libusb/libusb1_1.0.8.bb
index 5a921e0..8873de7 100644
--- a/meta/recipes-support/libusb/libusb1_1.0.8.bb
+++ b/meta/recipes-support/libusb/libusb1_1.0.8.bb
@@ -6,7 +6,7 @@ SECTION = "libs"
LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
-PR = "r1"
+PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2"
@@ -20,7 +20,6 @@ EXTRA_OECONF = "--libdir=${base_libdir}"
do_install_append() {
install -d ${D}${libdir}
- mv ${D}${base_libdir}/*.la ${D}${libdir}
mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
}
--
1.7.4.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] libusb-compat: keep *.la in base_libdir
2012-01-08 18:04 [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir Andreas Müller
2012-01-08 18:04 ` [PATCH 1/2] libusb1: " Andreas Müller
@ 2012-01-08 18:04 ` Andreas Müller
2012-01-12 6:38 ` [PATCH 0/2] libusb1/libusb-compat " Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Andreas Müller @ 2012-01-08 18:04 UTC (permalink / raw)
To: openembedded-core
build-tested from scratch in angstrom environment.
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
---
meta/recipes-support/libusb/libusb-compat_0.1.3.bb | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-support/libusb/libusb-compat_0.1.3.bb b/meta/recipes-support/libusb/libusb-compat_0.1.3.bb
index e070463..60ebcc2 100644
--- a/meta/recipes-support/libusb/libusb-compat_0.1.3.bb
+++ b/meta/recipes-support/libusb/libusb-compat_0.1.3.bb
@@ -15,7 +15,7 @@ DEPENDS = "libusb1"
PROVIDES = "libusb"
PE = "1"
-PR = "r1"
+PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-compat-${PV}.tar.bz2 \
file://0.1.0-beta1-gcc3.4-fix.patch"
@@ -29,7 +29,6 @@ EXTRA_OECONF = "--libdir=${base_libdir}"
do_install_append() {
install -d ${D}${libdir}
- mv ${D}${base_libdir}/*.la ${D}${libdir}
mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
}
--
1.7.4.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir
2012-01-08 18:04 [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir Andreas Müller
2012-01-08 18:04 ` [PATCH 1/2] libusb1: " Andreas Müller
2012-01-08 18:04 ` [PATCH 2/2] libusb-compat: " Andreas Müller
@ 2012-01-12 6:38 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-01-12 6:38 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 01/08/2012 10:04 AM, Andreas Müller wrote:
> libusb-compat did not yet cause a build error but it is motivated by the
> experience with libusb1.
>
> I will be out until 12. and can not respond on comments until then.
>
> Andreas Müller (2):
> libusb1: keep *.la in base_libdir
> libusb-compat: keep *.la in base_libdir
>
> meta/recipes-support/libusb/libusb-compat_0.1.3.bb | 3 +--
> meta/recipes-support/libusb/libusb1_1.0.8.bb | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-01-12 21:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-08 18:04 [PATCH 0/2] libusb1/libusb-compat keep *.la in base_libdir Andreas Müller
2012-01-08 18:04 ` [PATCH 1/2] libusb1: " Andreas Müller
2012-01-08 18:04 ` [PATCH 2/2] libusb-compat: " Andreas Müller
2012-01-12 6:38 ` [PATCH 0/2] libusb1/libusb-compat " Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox