summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/fstests/fstests_svn.bb
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-01-11 08:14:04 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-20 21:37:04 +0000
commit958fd5a649ecab5c30b401a08770dd734c206b60 (patch)
treeaec8e97ecf4e9ec82fc6b64874e6707258d4353e /meta/recipes-graphics/fstests/fstests_svn.bb
parent2560d0e83f40fbd328c3f8d99e0c120ad10ff272 (diff)
downloadpoky-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.bb5
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"
4LICENSE = "ZLIB" 4LICENSE = "ZLIB"
5DEPENDS = "pango libxext libxft virtual/libx11 gtk+" 5DEPENDS = "pango libxext libxft virtual/libx11 gtk+"
6PV = "0.0+svnr${SRCPV}" 6PV = "0.0+svnr${SRCPV}"
7PR = "r0" 7PR = "r1"
8 8
9inherit autotools 9inherit autotools
10 10
11SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=fstests;proto=http" 11SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=fstests;proto=http \
12 file://dso_linking_change_build_fix.patch"
12 13
13S = "${WORKDIR}/fstests/tests" 14S = "${WORKDIR}/fstests/tests"
14 15