From 77b80367ad0cfdbb3d78242fda3127559e2df576 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 9 Dec 2011 13:53:45 -0400 Subject: Only enable executable config files in v9. The quality of file permissions in debian/ directories turns out to be atrocious; who knew? --- Debian/Debhelper/Dh_Lib.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Debian/Debhelper') diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index a86688a2..3940c05f 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -613,7 +613,8 @@ sub filedoublearray { my $file=shift; my $globdir=shift; - my $x=-x $file; + # executable confi files are a v9 thing. + my $x=! compat(8) && -x $file; if ($x) { require Cwd; my $cmd=Cwd::abs_path($file); -- cgit v1.2.3