From 0b1d71a6506ae053ca3c6ed06d2e4a0da0052da7 Mon Sep 17 00:00:00 2001 From: Raphaƫl Hertzog Date: Fri, 6 Nov 2009 00:07:36 +0100 Subject: Dpkg::Source::Package::V3::git::do_build(): remove extra quotes Remove extra quoting that should not be there while passing an exclude file to git ls-files during build of 3.0 (git) source package. Based-on-patch-by: Courtney Bane --- scripts/Dpkg/Source/Package/V3/git.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/Dpkg/Source/Package/V3/git.pm') diff --git a/scripts/Dpkg/Source/Package/V3/git.pm b/scripts/Dpkg/Source/Package/V3/git.pm index d3a800e01..a4f41546c 100644 --- a/scripts/Dpkg/Source/Package/V3/git.pm +++ b/scripts/Dpkg/Source/Package/V3/git.pm @@ -145,7 +145,7 @@ sub do_build { my $core_excludesfile = `git config --get core.excludesfile`; chomp $core_excludesfile; if (length $core_excludesfile && -e $core_excludesfile) { - push @ignores, "--exclude-from='$core_excludesfile'"; + push @ignores, "--exclude-from=$core_excludesfile"; } if (-e ".git/info/exclude") { push @ignores, "--exclude-from=.git/info/exclude"; -- cgit v1.2.3