diff options
Diffstat (limited to 'scripts/Dpkg/Source/Package/V3/bzr.pm')
-rw-r--r-- | scripts/Dpkg/Source/Package/V3/bzr.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Dpkg/Source/Package/V3/bzr.pm b/scripts/Dpkg/Source/Package/V3/bzr.pm index b30c17a8e..dd5d1444c 100644 --- a/scripts/Dpkg/Source/Package/V3/bzr.pm +++ b/scripts/Dpkg/Source/Package/V3/bzr.pm @@ -177,9 +177,9 @@ sub do_extract { error(_g("format v3.0 uses only one source file")); } my $tarfile = $files[0]; - if ($tarfile !~ /^\Q$basenamerev\E\.bzr\.tar\.$comp_regex$/) { + if ($tarfile !~ /^\Q$basenamerev\E\.bzr\.tar\.$compression_re_file_ext$/) { error(_g("expected %s, got %s"), - "$basenamerev.bzr.tar.$comp_regex", $tarfile); + "$basenamerev.bzr.tar.$compression_re_file_ext", $tarfile); } erasedir($newdirectory); |