]> git.donarmstrong.com Git - debhelper.git/commitdiff
r482: * Spellpatch, Closes: #101553
authorjoey <joey>
Thu, 21 Jun 2001 02:09:34 +0000 (02:09 +0000)
committerjoey <joey>
Thu, 21 Jun 2001 02:09:34 +0000 (02:09 +0000)
Debian/Debhelper/Dh_Lib.pm
debhelper.pod
debian/changelog
dh_installdocs
dh_installmanpages
dh_installwm
dh_makeshlibs
dh_movefiles
doc/PROGRAMMING

index 92eae0c7af567d56a955998027062bfc02ab843c..4beaa0dc4f90b65875a8a5384c6a71614f46e349 100644 (file)
@@ -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 {
index a93034e55da8fa200f263a66d519a0a63de39058..85b3fd2997ee6dd93659bcaad177eccb62c75bc2 100644 (file)
@@ -194,7 +194,7 @@ you have a package that builds many binary packages, you will need to also
 use the -p flag to specify which binary package the debhelper program will
 act on.
 
-=head2 Debhelper compatability levels
+=head2 Debhelper compatibility levels
 
 From time to time, major non-backwards-compatible changes need to be made
 to debhelper, to keep it clean and well-designed as needs change and its
@@ -208,7 +208,7 @@ debhelper should be used. There are currently 3:
 =item V1
 
 Setting DH_COMPAT=1 (or leaving it unset) causes debhelper to act in
-compatability mode. It will use debian/tmp as the package tree
+compatibility mode. It will use debian/tmp as the package tree
 directory for the first binary package listed in the control file, while using
 debian/<package> for all other packages listed in the control file.
 This mode is deprecated.
@@ -282,7 +282,7 @@ that modifies files on the build system.
 
 =item DH_COMPAT
 
-Specifies what compatability level debhelper should run at. See above.
+Specifies what compatibility level debhelper should run at. See above.
 
 =item DH_NO_ACT
 
index 44948daab388404501a89e91a5efeed001c09224..2d2d8e050c2e935ee9284d3f927885eb8b817926 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (3.0.37) unstable; urgency=low
+
+  * Spellpatch, Closes: #101553
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 20 Jun 2001 22:03:57 -0400
+
 debhelper (3.0.36) unstable; urgency=low
 
   * Whoops, I forgot to revert dh_perl too. Closes: #101477
index 621c5c0f13061e69b9bea3b1cb644ea77891a8c1..a6304530943f0b6f6337ba2fcff204733bcc5b3f 100755 (executable)
@@ -153,7 +153,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                }
        }
 
-       # Add in the /usr/doc compatability symlinks code.
+       # Add in the /usr/doc compatibility symlinks code.
        if (! $dh{NOSCRIPTS}) {
                autoscript($package,"postinst","postinst-doc",
                        "s/#PACKAGE#/$package/g",
index 60dcd832ea5f8f10df8b92972d48a6fc208ac8dc..cbde23c301ffe9fac973b71bc926a9204bb296a5 100755 (executable)
@@ -142,7 +142,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                my $install=1;
                foreach my $skip (@ARGV) {
                        # Look at basename of what's on connect line
-                       # for backwards compatability.
+                       # for backwards compatibility.
                        if ($basename eq basename($skip)) {
                                $install=undef;
                                last;
index 842b4f4cb72cea96931f960d5a859362bf493793..6199c0ac9a0de5ea09eb7a21604dc5e55c812c5b 100755 (executable)
@@ -63,7 +63,7 @@ if (! defined $dh{PRIORITY}) {
 }
 
 if (@ARGV) {
-       # This is here for backwards compatability. If the filename doesn't
+       # This is here for backwards compatibility. If the filename doesn't
        # include a path, assume it's in /usr/X11R6/bin.
        if ($ARGV[0] !~ m:/:) {
                $ARGV[0]="/usr/X11R6/bin/$ARGV[0]";
index a70d3b220be966a0cacfe0ca4d60fd34894467d7..1e5dd797fc15c71090ed8e65e3287b324dc8dd39 100755 (executable)
@@ -42,9 +42,9 @@ depend on any particular version of the package containing the shared
 library. It may be necessary for you to add some version dependancy
 information to the shlibs file. If -V is specified with no dependancy
 information, the current version of the package is plugged into a
-dependancy that looks like "packagename (>= packageversion)". If -V is specified with
-parameters, the parameters can be used to specify the exact dependancy
-information needed (be sure to include the package name).
+dependancy that looks like "packagename (>= packageversion)". If -V is
+specified with parameters, the parameters can be used to specify the exact
+dependancy information needed (be sure to include the package name).
 
 =item B<-n>, B<--noscripts>
 
index 3fc689f6490cb0c81b640cc83d5e9cab220c512e..18e46d4d8c9f3b85491f287a97e591b26cac5af8 100755 (executable)
@@ -50,7 +50,7 @@ tell dh_movefiles which subpackage to put them in.
 =head1 NOTES
 
 Note that files are always moved out of debian/tmp by default (even if you
-have instructed debhelper to use a compatability level higher than one,
+have instructed debhelper to use a compatibility level higher than one,
 which does not otherwise use debian/tmp for anything at all). The idea
 behind this is that the package that is being built can be told to install
 into debian/tmp, and then files can be moved by dh_movefiles from that
index 0934727e686bbe04d70a070bb6553cfb32701592..a1fa8ee786b803f00f7a73dac2f13de4917beaad 100644 (file)
@@ -178,9 +178,9 @@ tmpdir()
        name of the tmp directory that will be used as this package's
        package build directory. Typically, this will be "debian/package".
 compat()
-       Pass this command a number, and if the current compatability level
+       Pass this command a number, and if the current compatibility level
        equals that number, it will return true. Looks at DH_COMPAT to get
-       the compatability level.
+       the compatibility level.
 pkgfile()
        Pass this command the name of a binary package, and the base name of a
        file, and it will return the actual filename to use. This is used