diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-06 12:50:11 +0000 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-06 12:50:11 +0000 |
commit | 877213524a17c032f8eec9c84c791ab3da46216e (patch) | |
tree | 609307854670ba82de85297d598ed86316336b8a /recipes/gd | |
parent | fd2069004f0d17c0edd3dd4130a58419d6b524ad (diff) |
gd: use LDFLAGS (fixes QA error)
Diffstat (limited to 'recipes/gd')
-rw-r--r-- | recipes/gd/gd_2.0.33.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gd/gd_2.0.33.bb b/recipes/gd/gd_2.0.33.bb index 7c1f7c3d19..7e47b0883e 100644 --- a/recipes/gd/gd_2.0.33.bb +++ b/recipes/gd/gd_2.0.33.bb @@ -2,7 +2,7 @@ SECTION = "libs" LICENSE = "GD" DESCRIPTION = "gd is a library used to create PNG, JPEG, or WBMP images." DEPENDS = "libpng jpeg zlib" -PR = "r1" +PR = "r2" SRC_URI = "http://www.boutell.com/gd/http/gd-${PV}.tar.gz" S = "${WORKDIR}/gd-${PV}" @@ -17,7 +17,7 @@ EXTRA_OECONF += " --with-zlib=${STAGING_LIBDIR}/.. \ --without-xpm \ --without-x" -EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}" +EXTRA_OEMAKE = 'LDFLAGS="${LDFLAGS}"' headers = "gd.h gdcache.h gd_io.h gdfx.h gdfontmb.h \ gdfontg.h gdfontl.h gdfonts.h gdfontt.h" |