From dfc48628ab06f010bb18454d5d8e8701b1bcf58a Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 6 Apr 2003 18:33:01 +0000 Subject: r582: * Fix build with 077 umask. Closes: #187757 * Allow colons between multiple items in DH_ALWAYS_EXCLUDE. --- Debian/Debhelper/Dh_Lib.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Debian/Debhelper/Dh_Lib.pm') 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. -- cgit v1.2.3