summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Source/Package/V3/git.pm
diff options
context:
space:
mode:
authorRaphaël Hertzog <hertzog@debian.org>2009-11-06 00:07:36 +0100
committerRaphaël Hertzog <hertzog@debian.org>2009-11-06 00:10:43 +0100
commit0b1d71a6506ae053ca3c6ed06d2e4a0da0052da7 (patch)
tree44cca0c6ed3af1fa7df9114dcd04f1b572186d51 /scripts/Dpkg/Source/Package/V3/git.pm
parent32e999f9725589467249aabb9cf8043aaa9b9282 (diff)
downloaddpkg-0b1d71a6506ae053ca3c6ed06d2e4a0da0052da7.tar.gz
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 <debian-bugs-5265@cbane.org>
Diffstat (limited to 'scripts/Dpkg/Source/Package/V3/git.pm')
-rw-r--r--scripts/Dpkg/Source/Package/V3/git.pm2
1 files changed, 1 insertions, 1 deletions
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";