diff options
author | Richard Purdie <richard@openedhand.com> | 2008-05-18 16:22:21 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-05-18 16:22:21 +0000 |
commit | 9909e989d93e2bb9f51596a5a6ab09dd0eb6a5e4 (patch) | |
tree | e0a5f7629c1266abb99ac4ea5b53602b1833003f /meta | |
parent | f0e154b9f9953aa03f651630b3daee0dc5b444c9 (diff) | |
download | poky-9909e989d93e2bb9f51596a5a6ab09dd0eb6a5e4.tar.gz |
patch.bbclass: Make it possibe to override the patch dependency
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4489 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/patch.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index 5263089916..8bb2dee79a 100644 --- a/meta/classes/patch.bbclass +++ b/meta/classes/patch.bbclass | |||
@@ -395,7 +395,8 @@ def patch_init(d): | |||
395 | 395 | ||
396 | addtask patch after do_unpack | 396 | addtask patch after do_unpack |
397 | do_patch[dirs] = "${WORKDIR}" | 397 | do_patch[dirs] = "${WORKDIR}" |
398 | do_patch[depends] = "${PATCHTOOL}-native:do_populate_staging" | 398 | PATCHDEPENDENCY = "${PATCHTOOL}-native:do_populate_staging" |
399 | do_patch[depends] = "${PATCHDEPENDENCY}" | ||
399 | 400 | ||
400 | python patch_do_patch() { | 401 | python patch_do_patch() { |
401 | import re | 402 | import re |