diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-01-11 08:14:04 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-20 21:37:04 +0000 |
commit | 958fd5a649ecab5c30b401a08770dd734c206b60 (patch) | |
tree | aec8e97ecf4e9ec82fc6b64874e6707258d4353e /meta/recipes-graphics/fstests/fstests_svn.bb | |
parent | 2560d0e83f40fbd328c3f8d99e0c120ad10ff272 (diff) | |
download | poky-958fd5a649ecab5c30b401a08770dd734c206b60.tar.gz |
fstests: fix build issue with gcc dso linking change
All the libraries needs to be specified explicitely with the new gcc dso
linking change patch. This was causing build errors for this
recipe. Specifying the libX11 library explicitely for linking to
work without errors.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-graphics/fstests/fstests_svn.bb')
-rw-r--r-- | meta/recipes-graphics/fstests/fstests_svn.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-graphics/fstests/fstests_svn.bb b/meta/recipes-graphics/fstests/fstests_svn.bb index efa5c1fa22..3c0d7b0b12 100644 --- a/meta/recipes-graphics/fstests/fstests_svn.bb +++ b/meta/recipes-graphics/fstests/fstests_svn.bb | |||
@@ -4,11 +4,12 @@ SECTION = "devel" | |||
4 | LICENSE = "ZLIB" | 4 | LICENSE = "ZLIB" |
5 | DEPENDS = "pango libxext libxft virtual/libx11 gtk+" | 5 | DEPENDS = "pango libxext libxft virtual/libx11 gtk+" |
6 | PV = "0.0+svnr${SRCPV}" | 6 | PV = "0.0+svnr${SRCPV}" |
7 | PR = "r0" | 7 | PR = "r1" |
8 | 8 | ||
9 | inherit autotools | 9 | inherit autotools |
10 | 10 | ||
11 | SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=fstests;proto=http" | 11 | SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=fstests;proto=http \ |
12 | file://dso_linking_change_build_fix.patch" | ||
12 | 13 | ||
13 | S = "${WORKDIR}/fstests/tests" | 14 | S = "${WORKDIR}/fstests/tests" |
14 | 15 | ||