summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2010-02-18 17:01:59 +0100
committerJens-Heiner Rechtien <hr@openoffice.org>2010-02-18 17:01:59 +0100
commit934e7d54fd23c94a94475b838390486f5981fff2 (patch)
tree188974f8ff9200e4503329eeda0a6fdb9bee3e64
parent0277a82a53f43dac652debaec09b2ee7a8170ac5 (diff)
hr68: #161650#: cws fetch: fetch common solvers before platform solvers
-rw-r--r--solenv/bin/cws.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/cws.pl b/solenv/bin/cws.pl
index 1c7c98ef3fcb..772686dd6583 100644
--- a/solenv/bin/cws.pl
+++ b/solenv/bin/cws.pl
@@ -2195,8 +2195,8 @@ sub do_fetch
$nonproduct = 1;
}
}
- push(@platforms, 'common.pro') if ($product && !$added_product);
- push(@platforms, 'common') if ($nonproduct && !$added_nonproduct);
+ unshift(@platforms, 'common.pro') if ($product && !$added_product);
+ unshift(@platforms, 'common') if ($nonproduct && !$added_nonproduct);
}
foreach(@platforms) {