From 42ee9ee542de3227ef426804db6b2cb19dbe8311 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 26 Mar 2009 15:20:42 -0400 Subject: dh_icons: ignore gnome and hicolor themes (will be handled by triggers). Closes: #521181 --- dh_icons | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dh_icons') diff --git a/dh_icons b/dh_icons index 835287a8..4afbf7c0 100755 --- a/dh_icons +++ b/dh_icons @@ -46,6 +46,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { opendir(DIRHANDLE, $icondir); while (my $subdir = readdir(DIRHANDLE)) { next if $subdir =~ /^\./; + next if $subdir eq "gnome"; + next if $subdir eq "hicolor"; my $needs_cache = 0; find sub { $needs_cache = 1 if -f and (/\.png$/ or /\.svg$/ or /\.xpm$/ or /\.icon$/); -- cgit v1.2.3