diff options
author | joey <joey> | 2003-04-06 18:33:01 +0000 |
---|---|---|
committer | joey <joey> | 2003-04-06 18:33:01 +0000 |
commit | dfc48628ab06f010bb18454d5d8e8701b1bcf58a (patch) | |
tree | 3c33ca1a30d1776d37e2dca103c62ba23d81d8b4 /Debian | |
parent | ad0b88983934d9daa702a7416cfab8cf768a54d1 (diff) | |
download | debhelper-dfc48628ab06f010bb18454d5d8e8701b1bcf58a.tar.gz |
r582: * Fix build with 077 umask. Closes: #187757
* Allow colons between multiple items in DH_ALWAYS_EXCLUDE.
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 41b7a634..345630d7 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -45,7 +45,7 @@ sub init { # Another way to set excludes. if (exists $ENV{DH_ALWAYS_EXCLUDE} && length $ENV{DH_ALWAYS_EXCLUDE}) { - push @{$dh{EXCLUDE}}, $ENV{DH_ALWAYS_EXCLUDE}; + push @{$dh{EXCLUDE}}, split(":", $ENV{DH_ALWAYS_EXCLUDE}); } # Generate EXCLUDE_FIND. |