diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-24 13:01:00 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-25 12:54:52 -0700 |
commit | 6fe7cef27069415f2eba36bc640cf59013d4979b (patch) | |
tree | b0cb8845ddc6b8bcffc50e08a2eeae98e049be98 /recipes/gmp | |
parent | bf7d0467a0788a7fcc1c96e0dc35a25ae09278a0 (diff) |
Make the do_patch apply=yes param implicit if extension is .diff/.patch
For .diff/.patch you need to apply manually, you can specify apply=no.
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/gmp')
-rw-r--r-- | recipes/gmp/gmp.inc | 4 | ||||
-rw-r--r-- | recipes/gmp/gmp_4.1.2.bb | 2 | ||||
-rw-r--r-- | recipes/gmp/gmp_4.1.4.bb | 2 | ||||
-rw-r--r-- | recipes/gmp/gmp_4.2.1.bb | 4 | ||||
-rw-r--r-- | recipes/gmp/gmp_4.2.2.bb | 8 | ||||
-rw-r--r-- | recipes/gmp/gmp_4.2.4.bb | 6 |
6 files changed, 13 insertions, 13 deletions
diff --git a/recipes/gmp/gmp.inc b/recipes/gmp/gmp.inc index 0a84e1958c..601122360b 100644 --- a/recipes/gmp/gmp.inc +++ b/recipes/gmp/gmp.inc @@ -4,8 +4,8 @@ HOMEPAGE = "http://www.swox.com/gmp/" LICENSE = "GPL LGPL" SRC_URI = "${GNU_MIRROR}/gmp/gmp-${PV}.tar.bz2;name=gmp \ - file://configure.patch;apply=yes \ - file://amd64.patch;apply=yes" + file://configure.patch \ + file://amd64.patch" inherit autotools diff --git a/recipes/gmp/gmp_4.1.2.bb b/recipes/gmp/gmp_4.1.2.bb index eae4c9ffa9..2b814ce596 100644 --- a/recipes/gmp/gmp_4.1.2.bb +++ b/recipes/gmp/gmp_4.1.2.bb @@ -1,5 +1,5 @@ require gmp.inc -SRC_URI += "file://gcc-compile.patch;apply=yes" +SRC_URI += "file://gcc-compile.patch" SRC_URI[gmp.md5sum] = "ed39b34dd14014cc504840776af5ba10" SRC_URI[gmp.sha256sum] = "51ba8551092510ef5c61798584f4cff054e0fbbe7c46fea2c8ff9ea9a52edcd1" diff --git a/recipes/gmp/gmp_4.1.4.bb b/recipes/gmp/gmp_4.1.4.bb index ea02996d9e..18d8889167 100644 --- a/recipes/gmp/gmp_4.1.4.bb +++ b/recipes/gmp/gmp_4.1.4.bb @@ -2,6 +2,6 @@ require gmp.inc PR = "r1" -SRC_URI += "file://sh4-asmfix.patch;apply=yes" +SRC_URI += "file://sh4-asmfix.patch" SRC_URI[gmp.md5sum] = "0aa7d3b3f5b5ec5951e7dddd6f65e891" SRC_URI[gmp.sha256sum] = "1a6ed0ea17b24ea8864c4df516d20c41fac97a448559ddee5a8477aeeecca1a3" diff --git a/recipes/gmp/gmp_4.2.1.bb b/recipes/gmp/gmp_4.2.1.bb index 342fc004e2..8d1444d5dd 100644 --- a/recipes/gmp/gmp_4.2.1.bb +++ b/recipes/gmp/gmp_4.2.1.bb @@ -1,7 +1,7 @@ PR = "r2" -SRC_URI_append += "file://sh4-asmfix.patch;apply=yes \ - file://x86-fat.diff;apply=yes;striplevel=0 " +SRC_URI_append += "file://sh4-asmfix.patch \ + file://x86-fat.diff;striplevel=0 " require gmp.inc diff --git a/recipes/gmp/gmp_4.2.2.bb b/recipes/gmp/gmp_4.2.2.bb index b30396ef88..c8c1d68b3c 100644 --- a/recipes/gmp/gmp_4.2.2.bb +++ b/recipes/gmp/gmp_4.2.2.bb @@ -1,9 +1,9 @@ PR = "r1" -SRC_URI_append += "file://02_noexec-stack.diff;apply=yes \ - file://03_gnu89-inline.diff;apply=yes \ - file://mpf_set_str_c.diff;apply=yes \ - file://sh4-asmfix.patch;apply=yes \ +SRC_URI_append += "file://02_noexec-stack.diff \ + file://03_gnu89-inline.diff \ + file://mpf_set_str_c.diff \ + file://sh4-asmfix.patch \ " require gmp.inc diff --git a/recipes/gmp/gmp_4.2.4.bb b/recipes/gmp/gmp_4.2.4.bb index f517c022a6..963a4622a2 100644 --- a/recipes/gmp/gmp_4.2.4.bb +++ b/recipes/gmp/gmp_4.2.4.bb @@ -1,9 +1,9 @@ INC_PR = "r0" PR = "${INC_PR}.5" -SRC_URI_append += "file://sh4-asmfix.patch;apply=yes \ - file://use-includedir.patch;apply=yes \ - file://dont_use_mips_h_constraint.patch;apply=yes \ +SRC_URI_append += "file://sh4-asmfix.patch \ + file://use-includedir.patch \ + file://dont_use_mips_h_constraint.patch \ " require gmp.inc LICENSE = "GPLv3 LGPLv3" |