summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorjoey <joey>2001-06-21 02:09:34 +0000
committerjoey <joey>2001-06-21 02:09:34 +0000
commit23a8188b668fbbdd8e84260040e276a6ef3a879c (patch)
treebef3e0d3db9049d16dfb46f887199e0e741c94fb /Debian/Debhelper
parent6f79d5cba3c0d84591a8147576a494a7eccffe51 (diff)
r482: * Spellpatch, Closes: #101553
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Dh_Lib.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index 92eae0c7..4beaa0dc 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -209,7 +209,7 @@ sub dirname {
return $fn;
}
-# Pass in a number, will return true iff the current compatability level
+# Pass in a number, will return true iff the current compatibility level
# is less than or equal to that number.
sub compat {
my $num=shift;
@@ -220,7 +220,7 @@ sub compat {
}
if ($c > $max_compat) {
- error("Sorry, but $max_compat is the highest compatability level of debhelper currently supported.");
+ error("Sorry, but $max_compat is the highest compatibility level of debhelper currently supported.");
}
return ($c <= $num);
@@ -235,7 +235,7 @@ sub tmpdir {
return $dh{TMPDIR};
}
elsif (compat(1) && $package eq $dh{MAINPACKAGE}) {
- # This is for back-compatability with the debian/tmp tradition.
+ # This is for back-compatibility with the debian/tmp tradition.
return "debian/tmp";
}
else {