diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2005-11-18 08:05:01 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-18 08:05:01 +0000 |
commit | cce6287a6f4589a6494835b7710fcfa5d7d8bbe8 (patch) | |
tree | 05014db174f6479de19a10e457e1f0a51b31e2af /packages/gmp/gmp_4.1.4.bb | |
parent | dc1b9c438381a5365f4787d64defaf60befa3946 (diff) |
gmp 4.1.4: added asm fix for sh4 provided by Jamie Lenehan - close #469
Diffstat (limited to 'packages/gmp/gmp_4.1.4.bb')
-rw-r--r-- | packages/gmp/gmp_4.1.4.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/gmp/gmp_4.1.4.bb b/packages/gmp/gmp_4.1.4.bb index c9348ea43e..d80e728dc4 100644 --- a/packages/gmp/gmp_4.1.4.bb +++ b/packages/gmp/gmp_4.1.4.bb @@ -3,15 +3,17 @@ DESCRIPTION = "GNU multiprecision arithmetic library" HOMEPAGE = "http://www.swox.com/gmp/" LICENSE = "GPL LGPL" +PR = "r1" + SRC_URI = "ftp://ftp.gnu.org/gnu/gmp/gmp-${PV}.tar.bz2 \ file://configure.patch;patch=1 \ - file://amd64.patch;patch=1" + file://amd64.patch;patch=1 \ + file://sh4-asmfix.patch;patch=1" inherit autotools acpaths = "" do_stage () { - oe_libinstall -so libgmp ${STAGING_LIBDIR} - install -m 0644 ${S}/gmp.h ${STAGING_INCDIR}/gmp.h + autotools_stage_all } |