summaryrefslogtreecommitdiffstats
path: root/tools/gencompss
blob: b12328e4912048d699d5da0093fe25514d903bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

open F, "packdrake -c @ARGV | hdlist2groups - |";
foreach (<F>) {
    chop;
    /(.*):(.*)/;
    $l{$2}{$1} = undef;
}
close F or die;
foreach (sort keys %l) {
    print "$_\n";
    print "\t$_\n" foreach sort keys %{$l{$_}};
    print "\n";
}
fo' class='commit-info'> authorThierry Vignaud <tv@mandriva.org>2008-09-25 11:18:16 +0000 committerThierry Vignaud <tv@mandriva.org>2008-09-25 11:18:16 +0000 commit74699bed58fa42448050a62a272b3191f99e85a1 (patch) treecf1ee3a0efdcce83cef21e6857cef5b12b3e04f3 /perl-install parent5afafc514ab8f78ce67d5d14f06d31e91e9cbbd1 (diff)downloaddrakx-74699bed58fa42448050a62a272b3191f99e85a1.tar
drakx-74699bed58fa42448050a62a272b3191f99e85a1.tar.gz
drakx-74699bed58fa42448050a62a272b3191f99e85a1.tar.bz2
drakx-74699bed58fa42448050a62a272b3191f99e85a1.tar.xz
drakx-74699bed58fa42448050a62a272b3191f99e85a1.zip
(_gtk__MDV_Notebook) make sure mcc always have fillers
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/mygtk2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index a29d916ea..88b497870 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -654,7 +654,7 @@ sub _gtk__MDV_Notebook {
my ($layout, $selection_arrow, $selection_bar);
my $parent_window = delete $opts->{parent_window} || root_window();
my $root_height = first($parent_window->get_size());
- my $suffix = $::testing || $root_height eq 800 ? '_600' : '_768';
+ my $suffix = $root_height eq 800 && !$::isStandalone ? '_600' : '_768';
# the white square is a little bit above the actual left sidepanel:
my $offset = 20;
my $is_flip_needed = text_direction_rtl();