diff options
author | joey <joey> | 2002-01-10 18:58:55 +0000 |
---|---|---|
committer | joey <joey> | 2002-01-10 18:58:55 +0000 |
commit | d6f3bdb1c18ff73a755949134c8850a7b075289f (patch) | |
tree | 242d7d16080d85a00093340c5df23c8456339763 | |
parent | 07659546d4248d4f4f4edc2c03d2ca5a6fe32f02 (diff) | |
download | debhelper-d6f3bdb1c18ff73a755949134c8850a7b075289f.tar.gz |
r502: * Fixed programmer's documentation of DOINDEP and DOARCH, Closes: #128546
* Fixed dh_builddeb SYNOPSIS, Closes: #128548
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | dh_builddeb | 2 | ||||
-rw-r--r-- | doc/PROGRAMMING | 8 |
3 files changed, 12 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index d1a36af8..a009e1e0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (3.4.1) unstable; urgency=low + + * Fixed programmer's documentation of DOINDEP and DOARCH, Closes: #128546 + * Fixed dh_builddeb SYNOPSIS, Closes: #128548 + + -- Joey Hess <joeyh@debian.org> Thu, 10 Jan 2002 13:49:37 -0500 + debhelper (3.4.0) unstable; urgency=low * Began work on v4 support (and thus the large version number jump), and it diff --git a/dh_builddeb b/dh_builddeb index 180d0df1..d259b016 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -11,7 +11,7 @@ use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS -B<dh_builddeb> [S<I<debhelper options>>] [B<--destdir=>I<directory>] [B<name=>I<filename>] [S<B<--> I<params>>] +B<dh_builddeb> [S<I<debhelper options>>] [B<--destdir=>I<directory>] [B<--name=>I<filename>] [S<B<--> I<params>>] =head1 DESCRIPTION diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING index 423d21ed..7a78711b 100644 --- a/doc/PROGRAMMING +++ b/doc/PROGRAMMING @@ -85,10 +85,10 @@ switch variable description --no-act NO_ACT should the program not actually do anything? -i,-a,-p,-N DOPACKAGES a space delimited list of the binary packages to act on (in Dh_Lib.pm, this is an array) --i,-p,-N DOINDEP a space delimited list of the binary independent - packages to act on --a,-p,-N DOARCH a space delimited list of the binary dependent - packages to act on +-i DOINDEP set if we're acting on binary independent + packages +-a DOARCH set if we're acting on binary dependent + packages -n NOSCRIPTS if set, do not make any modifications to the package's postinst, postrm, etc scripts. -X EXCLUDE exclude a something from processing (you |