? update_211182_194.patch
Index: includes/update.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/update.inc,v
retrieving revision 1.38
diff -r1.38 update.inc
1122a1123
>   $prepend_str = "update_";
1124,1125c1125,1127
<     if (!empty($update_dependencies[$data['module']][$data['number']])) {
<       foreach ($update_dependencies[$data['module']][$data['number']] as $module => $number) {
---
>     if (!empty($update_dependencies[$data['module']][$prepend_str . $data['number']])) {
>       foreach ($update_dependencies[$data['module']][$prepend_str . $data['number']] as $module => $prepended_number) {
>       	$number = substr($prepended_number, strlen($prepend_str));
Index: modules/comment/comment.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.install,v
retrieving revision 1.61
diff -r1.61 comment.install
85,86c85,86
<   $dependencies['comment'][7005] = array(
<     'system' => 7049,
---
>   $dependencies['comment']['update_7005'] = array(
>     'system' => 'update_7049',
88,89c88,89
<   $dependencies['system'][7050] = array(
<     'comment' => 7005,
---
>   $dependencies['system']['update_7050'] = array(
>     'comment' => 'update_7005',
94,95c94,95
<   $dependencies['comment'][7012] = array(
<     'system' => 7021,
---
>   $dependencies['comment']['update_7012'] = array(
>     'system' => 'update_7021',
Index: modules/filter/filter.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.install,v
retrieving revision 1.32
diff -r1.32 filter.install
115,116c115,116
<   $dependencies['filter'][7005] = array(
<     'taxonomy' => 7002,
---
>   $dependencies['filter']['update_7005'] = array(
>     'taxonomy' => 'update_7002',
Index: modules/node/node.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.install,v
retrieving revision 1.45
diff -r1.45 node.install
382,383c382,383
<   $dependencies['node'][7006] = array(
<     'system' => 7049,
---
>   $dependencies['node']['update_7006'] = array(
>     'system' => 'update_7049',
385,386c385,386
<   $dependencies['system'][7050] = array(
<     'node' => 7006,
---
>   $dependencies['system']['update_7050'] = array(
>     'node' => 'update_7006',
Index: modules/simpletest/tests/update_test_2.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/update_test_2.install,v
retrieving revision 1.1
diff -r1.1 update_test_2.install
13,14c13,14
<   $dependencies['update_test_2'][7001] = array(
<     'update_test_3' => 7000,
---
>   $dependencies['update_test_2']['update_7001'] = array(
>     'update_test_3' => 'update_7000',
Index: modules/simpletest/tests/update_test_3.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/update_test_3.install,v
retrieving revision 1.1
diff -r1.1 update_test_3.install
13,14c13,14
<   $dependencies['update_test_3'][7000] = array(
<     'update_test_2' => 7000,
---
>   $dependencies['update_test_3']['update_7000'] = array(
>     'update_test_2' => 'update_7000',
Index: modules/system/system.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.api.php,v
retrieving revision 1.139
diff -r1.139 system.api.php
2260a2261,2262
>  *   
>  *   Note: each number is prepended by the string 'update_'.
2269,2270c2271,2272
<   $dependencies['mymodule'][7000] = array(
<     'another_module' => 7002,
---
>   $dependencies['mymodule']['update_7000'] = array(
>     'another_module' => 'update_7002',
2279,2280c2281,2282
<   $dependencies['yet_another_module'][7004] = array(
<     'mymodule' => 7001,
---
>   $dependencies['yet_another_module']['update_7004'] = array(
>     'mymodule' => 'update_7001',
Index: modules/taxonomy/taxonomy.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.install,v
retrieving revision 1.36
diff -r1.36 taxonomy.install
215,216c215,216
<   $dependencies['taxonomy'][7002] = array(
<     'system' => 7049,
---
>   $dependencies['taxonomy']['update_7002'] = array(
>     'system' => 'update_7049',
218,219c218,219
<   $dependencies['user'][7006] = array(
<     'taxonomy' => 7002,
---
>   $dependencies['user']['update_7006'] = array(
>     'taxonomy' => 'update_7002',
221,222c221,222
<   $dependencies['system'][7050] = array(
<     'taxonomy' => 7002,
---
>   $dependencies['system']['update_7050'] = array(
>     'taxonomy' => 'update_7002',
225,226c225,226
<   $dependencies['node'][7006] = array(
<     'taxonomy' => 7002,
---
>   $dependencies['node']['update_7006'] = array(
>     'taxonomy' => 'update_7002',
