* [PATCH 0/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe.
@ 2011-10-13 2:22 wenzong.fan
2011-10-13 2:22 ` [PATCH 1/1] " wenzong.fan
2011-10-14 16:58 ` [PATCH 0/1] " Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: wenzong.fan @ 2011-10-13 2:22 UTC (permalink / raw)
To: openembedded-core
From: Wenzong Fan <wenzong.fan@windriver.com>
This patch merged from Wind River Linux, it fix a potential '/' issue for
qt4-x11-free.
[yocto bug id: 1671]
The following changes since commit b92b776d56e64a437181de9bc76f8dcc8e15a5f8:
Richard Purdie (1):
meta-yocto: Catch up with xserver and mesa upgrades/rename
are available in the git repository at:
git://git.pokylinux.org/poky-contrib wenzong/qt4_trailingslash
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=wenzong/qt4_trailingslash
Wenzong Fan (1):
qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe.
meta/recipes-qt/qt4/qt4.inc | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe. 2011-10-13 2:22 [PATCH 0/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe wenzong.fan @ 2011-10-13 2:22 ` wenzong.fan 2011-10-14 16:58 ` [PATCH 0/1] " Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: wenzong.fan @ 2011-10-13 2:22 UTC (permalink / raw) To: openembedded-core From: Wenzong Fan <wenzong.fan@windriver.com> [YOCTO #1671] qt4-x11-free's recipe includes a sed script to sanitize it's .prl files, which are used by qmake to generate a list of libs and includes in the Makefiles it generates. It however, fails to take into account the possibility of trailing slashes, and thus leaves them in, and breaks gcc's syntax. Update these regexes to account for them. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> --- meta/recipes-qt/qt4/qt4.inc | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc index d6382f5..1406a87 100644 --- a/meta/recipes-qt/qt4/qt4.inc +++ b/meta/recipes-qt/qt4/qt4.inc @@ -294,13 +294,13 @@ do_install() { rm -f ${D}/${bindir}/lrelease # fix pkgconfig, libtool and prl files - sed -i -e s#-L${S}/lib##g \ - -e s#-L${STAGING_LIBDIR}##g \ + sed -i -e s#-L${S}/lib/\?##g \ + -e s#-L${STAGING_LIBDIR}/\?##g \ -e 's#STAGING_LIBDIR}#libdir}'#g \ - -e s#-L${libdir}##g \ + -e s#-L${libdir}/\?##g \ -e s#'$(OE_QMAKE_LIBS_X11)'#"${OE_QMAKE_LIBS_X11}"#g \ - -e s#" -Wl,-rpath-link,${S}/lib"##g \ - -e s#" -Wl,-rpath-link,${libdir}"##g \ + -e s#" -Wl,-rpath-link,${S}/lib/\?"##g \ + -e s#" -Wl,-rpath-link,${libdir}/\?"##g \ -e 's#Iin#I${in#g' \ ${D}${libdir}/*.la ${D}${libdir}/*.prl ${D}${libdir}/pkgconfig/*.pc -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe. 2011-10-13 2:22 [PATCH 0/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe wenzong.fan 2011-10-13 2:22 ` [PATCH 1/1] " wenzong.fan @ 2011-10-14 16:58 ` Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: Saul Wold @ 2011-10-14 16:58 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On 10/12/2011 07:22 PM, wenzong.fan@windriver.com wrote: > From: Wenzong Fan<wenzong.fan@windriver.com> > > This patch merged from Wind River Linux, it fix a potential '/' issue for > qt4-x11-free. > > [yocto bug id: 1671] > > The following changes since commit b92b776d56e64a437181de9bc76f8dcc8e15a5f8: > Richard Purdie (1): > meta-yocto: Catch up with xserver and mesa upgrades/rename > > are available in the git repository at: > > git://git.pokylinux.org/poky-contrib wenzong/qt4_trailingslash > http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=wenzong/qt4_trailingslash > > Wenzong Fan (1): > qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe. > > meta/recipes-qt/qt4/qt4.inc | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > Merged into OE-Core Thanks Sau! > > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core > ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-10-14 17:04 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-10-13 2:22 [PATCH 0/1] qt4-x11-free: Fix broken regexes in qt4-x11-free's recipe wenzong.fan 2011-10-13 2:22 ` [PATCH 1/1] " wenzong.fan 2011-10-14 16:58 ` [PATCH 0/1] " Saul Wold
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox