diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | pbuilder-checkparams | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2002-02-08 Junichi Uekawa <dancer@debian.org> + + * pbuilder-checkparams : adding DEBIAN_FRONTEND=Noninteractive + case to the noninteractive mode check. Needed to work around FAI/ + sbuild/whateverelse undocumented incompatibility. + 2002-02-06 Junichi Uekawa <dancer@debian.org> * debian/changelog: updated the changelog. diff --git a/debian/changelog b/debian/changelog index 3cc6a3a..d9fbf48 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,10 @@ pbuilder (0.21) unstable; urgency=low * new version, not yet released + * Accept "Noninteractive" like "noninteractive" as value of DEBIAN_FRONTEND, + for compatibility with other (broken?) software. - -- Junichi Uekawa <dancer@debian.org> Wed, 6 Feb 2002 01:44:52 +0900 + -- Junichi Uekawa <dancer@debian.org> Fri, 8 Feb 2002 01:19:29 +0900 pbuilder (0.20) unstable; urgency=low diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 945210f..7cafa02 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -134,7 +134,7 @@ case "$PBCURRENTCOMMANDLINEOPERATION" in ;; *) # line from kobras@debian.org - if [ "$DEBIAN_FRONTEND" = "noninteractive" ]; then + if [ "$DEBIAN_FRONTEND" = "noninteractive" -o "$DEBIAN_FRONTEND" = "Noninteractive" ]; then exec < /dev/null fi ;; |