summaryrefslogtreecommitdiff
path: root/infra/dgit-repos-policy-debian
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2015-07-04 18:06:29 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2015-07-04 19:24:47 +0100
commitb02532fd7d3c82864c76eecbfd99a1abc7e2c1b2 (patch)
tree62e2308c9693c9651ce73c20efad43039de4ee79 /infra/dgit-repos-policy-debian
parent509a3e2079137b842228b6085b7bb31bbeedd631 (diff)
For non-Debian distros, debiantag() uses distro name a la DEP-14.
Diffstat (limited to 'infra/dgit-repos-policy-debian')
-rwxr-xr-xinfra/dgit-repos-policy-debian2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/dgit-repos-policy-debian b/infra/dgit-repos-policy-debian
index b21f797..0774f17 100755
--- a/infra/dgit-repos-policy-debian
+++ b/infra/dgit-repos-policy-debian
@@ -106,7 +106,7 @@ sub specific_suite_has_vsn_in_our_history ($) {
foreach my $entry (@$in_suite) {
my $vsn = $entry->{version};
die "$pkg ?" unless defined $vsn;
- my $tagref = "refs/tags/".debiantag $vsn;
+ my $tagref = "refs/tags/".debiantag $vsn, $distro;
printdebug " checking history suite=$suite vsn=$vsn tagref=$tagref\n";
$?=0; my $r = system qw(git show-ref --verify --quiet), $tagref;
return 1 if !$r;