diff options
author | dancer <dancer> | 2005-08-28 04:24:19 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-08-28 04:24:19 +0000 |
commit | 47be9f207e00fdbd57b15763bd10928735ead875 (patch) | |
tree | b3e038976bbd7297069fcebca1b5a47b49978769 | |
parent | 1f77af7a6ede131f0ae2f32a984d645601ba4d10 (diff) | |
download | pbuilder-47be9f207e00fdbd57b15763bd10928735ead875.tar pbuilder-47be9f207e00fdbd57b15763bd10928735ead875.tar.gz |
2005-08-28 Junichi Uekawa <dancer@debian.org>
* pbuilderrc: SHELL variable is set a default value.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | pbuilder-checkparams | 1 | ||||
-rw-r--r-- | pbuilder-modules | 1 | ||||
-rwxr-xr-x | pbuilderrc | 3 |
5 files changed, 14 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2005-08-28 Junichi Uekawa <dancer@debian.org> + + * pbuilderrc: SHELL variable is set a default value. + 2005-08-19 Junichi Uekawa <dancer@debian.org> * pbuilder-buildpackage-funcs: do cow thing, with cowprotect, for cowdancer. diff --git a/debian/changelog b/debian/changelog index 540e10e..6824d4f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,16 @@ -pbuilder (0.130) UNRELEASED; urgency=low +pbuilder (0.130) unstable; urgency=low * depend on cdebootstrap, and suggest debootstrap. You may alternatively use debootstrap, but the default is cdebootstrap. (closes: #323843, #324648) * cowdancer support improvement -- now passes testsuite. * Standards-version: 3.6.2 + * SHELL=/bin/bash is now exported in default configuration; + since setting that to 'zsh' and others will not always work + inside the chroot + (closes: #325184) - -- Junichi Uekawa <dancer@debian.org> Thu, 25 Aug 2005 10:27:14 +0900 + -- Junichi Uekawa <dancer@debian.org> Sun, 28 Aug 2005 13:00:38 +0900 pbuilder (0.129) unstable; urgency=low diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 6e8350e..138dc4f 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -35,7 +35,6 @@ unset EXTRA_CONFIGFILE || true PBUILDER_DEBUGMODE= SAVE_AFTER_LOGIN= AUTOCLEANAPTCACHE= - #option for user-mode-linux only. IGNORE_UMOUNT="" diff --git a/pbuilder-modules b/pbuilder-modules index e9ab324..40852d8 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -360,6 +360,7 @@ function create_basetgz() { ) } +#Setting environmental variables that are really required: #required for some packages to install... export LANG=C export LC_ALL=C @@ -58,5 +58,8 @@ unset DEBOOTSTRAPOPTS # Set the PATH I am going to use inside pbuilder: default is "/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin" export PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin" +# SHELL variable is used inside pbuilder by commands like 'su'; and they need sane values +export SHELL=/bin/bash + # The name of debootstrap command. DEBOOTSTRAP="cdebootstrap" |