diff options
author | dancer <dancer> | 2002-02-11 09:38:19 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-02-11 09:38:19 +0000 |
commit | f18b7f5d5970f2c5329e250e9c0b132282a87e75 (patch) | |
tree | 9ffad2337b4f8082e9edaf06bff017d7bcff57b9 | |
parent | c5558893cba6f9b03394b85a9a5d6bb1f9683826 (diff) | |
download | pbuilder-f18b7f5d5970f2c5329e250e9c0b132282a87e75.tar pbuilder-f18b7f5d5970f2c5329e250e9c0b132282a87e75.tar.gz |
some minor changes.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | pbuilder-buildpackage | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,7 @@ 2002-02-11 Junichi Uekawa <dancer@debian.org> * pbuilder-buildpackage: added a banner for pbuilder + changed the message for build-dependency failure, to make it more "pbuilder" like. 2002-02-10 Junichi Uekawa <dancer@debian.org> diff --git a/debian/changelog b/debian/changelog index 7816eb3..861abee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,8 +10,9 @@ pbuilder (0.22) unstable; urgency=low * Version requirement on debootstrap bumped up to the fixed version, 0.1.16.2. That package is installed at last. * Documentation updates + * Messages improvement, for automatic drives. - -- Junichi Uekawa <dancer@debian.org> Sun, 10 Feb 2002 22:25:45 +0900 + -- Junichi Uekawa <dancer@debian.org> Mon, 11 Feb 2002 18:39:11 +0900 pbuilder (0.21) unstable; urgency=low diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage index 6bcbe32..b7f7112 100755 --- a/pbuilder-buildpackage +++ b/pbuilder-buildpackage @@ -124,7 +124,7 @@ function checkbuilddep_internal () { fi done; if [ "$SATISFIED" = "no" ]; then - echo "Could not satisfy build-dependency." >&2 + echo "E: pbuilder: Could not satisfy build-dependency." >&2 umountproc_cleanbuildplace exit 1 fi |