summaryrefslogtreecommitdiff
path: root/dh_icons
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-03-26 15:20:42 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-03-26 15:20:42 -0400
commit42ee9ee542de3227ef426804db6b2cb19dbe8311 (patch)
treedf55c8347870ba5d24cb5623f84c2c842e8b9263 /dh_icons
parentb54fc57aca3e1fed6c48dce22ebef37e1c49111a (diff)
dh_icons: ignore gnome and hicolor themes (will be handled by triggers). Closes: #521181
Diffstat (limited to 'dh_icons')
-rwxr-xr-xdh_icons2
1 files changed, 2 insertions, 0 deletions
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$/);