diff options
author | Tom Rini <tom_rini@mentor.com> | 2010-09-09 12:46:41 -0700 |
---|---|---|
committer | Tom Rini <tom_rini@mentor.com> | 2010-09-13 09:00:43 -0700 |
commit | 6ce420a47b8bccce082c3113d9a09a4c77ee4267 (patch) | |
tree | 8e8b3081bcee20f18b1fb1e614cfba89f2a103f3 /recipes | |
parent | 3f7a74fd62188bd06797a2397d51a69f67933549 (diff) |
jpeg 6b: Switch to getting libtool from PATH
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/jpeg/jpeg_6b.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/jpeg/jpeg_6b.bb b/recipes/jpeg/jpeg_6b.bb index 2158c6e5c0..f9a5e36f54 100644 --- a/recipes/jpeg/jpeg_6b.bb +++ b/recipes/jpeg/jpeg_6b.bb @@ -6,7 +6,7 @@ PRIORITY = "required" DEPENDS = "libtool-cross" RPROVIDES_${PN} = "jpeg" -PR = "r9" +PR = "r10" #SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \ SRC_URI = "ftp://aeneas.mit.edu/pub/gnu/ghostscript/jpegsrc.v${PV}.tar.gz \ @@ -19,7 +19,8 @@ S = "${WORKDIR}/jpeg-${PV}" inherit autotools EXTRA_OECONF="--enable-static --enable-shared" -EXTRA_OEMAKE='"LIBTOOL=${STAGING_BINDIR_NATIVE}/${HOST_SYS}-libtool"' +LIBTOOL = "${HOST_SYS}-libtool" +EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" CFLAGS_append = " -D_REENTRANT" |