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/sdcc | |
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/sdcc')
-rw-r--r-- | recipes/sdcc/sdcc-native_2.5.0.bb | 2 | ||||
-rw-r--r-- | recipes/sdcc/sdcc_2.5.0.bb | 4 | ||||
-rw-r--r-- | recipes/sdcc/sdcc_2.8.0.bb | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/recipes/sdcc/sdcc-native_2.5.0.bb b/recipes/sdcc/sdcc-native_2.5.0.bb index 8b2648aede..69628d5223 100644 --- a/recipes/sdcc/sdcc-native_2.5.0.bb +++ b/recipes/sdcc/sdcc-native_2.5.0.bb @@ -4,7 +4,7 @@ DEPENDS = "" # don't need native-tools patch here SRC_URI = "${SOURCEFORGE_MIRROR}/sdcc/sdcc-${PV}.tar.gz \ - file://gcc4.patch;apply=yes" + file://gcc4.patch" do_stage() { oe_runmake install diff --git a/recipes/sdcc/sdcc_2.5.0.bb b/recipes/sdcc/sdcc_2.5.0.bb index 2dbbc53cd9..a9cd7912a2 100644 --- a/recipes/sdcc/sdcc_2.5.0.bb +++ b/recipes/sdcc/sdcc_2.5.0.bb @@ -6,8 +6,8 @@ DEPENDS = "sdcc-native" PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/sdcc/sdcc-${PV}.tar.gz \ - file://gcc4.patch;apply=yes \ - file://use-native-tools.patch;apply=yes" + file://gcc4.patch \ + file://use-native-tools.patch" S = "${WORKDIR}/sdcc" PARALLEL_MAKE = "" diff --git a/recipes/sdcc/sdcc_2.8.0.bb b/recipes/sdcc/sdcc_2.8.0.bb index d563ed3d22..76fc1c876d 100644 --- a/recipes/sdcc/sdcc_2.8.0.bb +++ b/recipes/sdcc/sdcc_2.8.0.bb @@ -5,7 +5,7 @@ HOMEPAGE = "http://sdcc.sourceforge.net" DEPENDS = "sdcc-native" SRC_URI = "${SOURCEFORGE_MIRROR}/sdcc/sdcc-src-${PV}.tar.bz2 \ - file://use-native-tools.patch;apply=yes" + file://use-native-tools.patch" S = "${WORKDIR}/sdcc" |