diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | examples/C10shell | 2 | ||||
-rwxr-xr-x | examples/C11screen | 2 |
4 files changed, 10 insertions, 4 deletions
@@ -1,5 +1,8 @@ 2007-05-28 Junichi Uekawa <dancer@debian.org> + * examples/C10shell: + * examples/C11screen: 2> /dev/tty, also. + * testsuite/run-test.sh: add workaround for tzdata output which is different every time it's invoked. diff --git a/debian/changelog b/debian/changelog index 52d5d1b..8212c79 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,15 @@ pbuilder (0.168) UNRELEASED; urgency=low * set LOGNAME when build user is created within chroot. - * do not always output 'Aborting with error' on create/update + * do not always output 'Aborting with error' on create/update (bug + introduced in 0.167) * fix man pages to have reference to pbuilder-doc.html, and fix home page address to point to alioth. * update debian/copyright + * fix C10shell script to work with the new 'tee' log mode. + (add '2> /dev/tty') - -- Junichi Uekawa <dancer@debian.org> Sun, 27 May 2007 21:07:00 +0900 + -- Junichi Uekawa <dancer@debian.org> Mon, 28 May 2007 20:30:07 +0900 pbuilder (0.167) unstable; urgency=low diff --git a/examples/C10shell b/examples/C10shell index f5ffb2b..a642c30 100644 --- a/examples/C10shell +++ b/examples/C10shell @@ -3,4 +3,4 @@ # # invoke shell if build fails. -/bin/bash </dev/tty > /dev/tty +/bin/bash < /dev/tty > /dev/tty 2> /dev/tty diff --git a/examples/C11screen b/examples/C11screen index 5f11769..8b11504 100755 --- a/examples/C11screen +++ b/examples/C11screen @@ -5,4 +5,4 @@ export debian_chroot="pbuilder" apt-get install -y --force-yes screen -screen </dev/tty > /dev/tty +screen </dev/tty > /dev/tty 2> /dev/tty |