diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | pbuilder-runhooks | 5 | ||||
-rw-r--r-- | pdebuild.1 | 2 |
4 files changed, 13 insertions, 6 deletions
@@ -1,5 +1,9 @@ 2002-02-24 Junichi Uekawa <dancer@debian.org> + * debian/changelog: release 0.24 + + * pdebuild.1: added better documentation. + * pbuilder-buildpackage: add runhooks * pbuilder-runhooks: add quoting. diff --git a/debian/changelog b/debian/changelog index 5224c9d..e49ba9f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ pbuilder (0.24) unstable; urgency=low - * (not yet released) FIXME * hooks support is in place for build target now. Read pbuilder.1 - for details. Adding C00bash, which contains a line calling "bash" - will allow running bash inside the chroot. - (closes: #134757) + for details. Adding C00bash, which contains a line calling + #!/bin/bash + bash < /dev/tty + will allow running bash inside the chroot. (closes: #134757) -- Junichi Uekawa <dancer@debian.org> Sun, 24 Feb 2002 20:37:35 +0900 diff --git a/pbuilder-runhooks b/pbuilder-runhooks index 822996f..dcd3261 100644 --- a/pbuilder-runhooks +++ b/pbuilder-runhooks @@ -18,6 +18,9 @@ # # HISTORY: # $Log$ +# Revision 1.13 2002/02/24 12:06:55 dancer +# release is ready, I've checked. +# # Revision 1.12 2002/02/24 07:57:06 dancer # added hooks support for pbuilder build target. # @@ -79,7 +82,7 @@ function loadhooks () { rm -rf "$BUILDPLACE/$hooks" fi if [ -d "$HOOKDIR" ]; then - mkdir -p "$BUILDPLACE/tmp/hooks" + mkdir -p "$BUILDPLACE/$hooks" cp -a "$HOOKDIR/"* "$BUILDPLACE/$hooks" fi } @@ -2,7 +2,7 @@ .SH NAME pdebuild \- pbuilder way of doing debuild .SH SYNOPSIS -.BI "pdebuild [" "options" "]" +.BI "pdebuild [" "options" "] -- [" "pbuilder options" "]" .PP .SH DESCRIPTION A convenience program for |