diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-08-14 03:10:00 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-08-14 03:10:00 +0000 |
commit | 6c3949428a9884b2b9c8ff5234c80fc445c01c12 (patch) | |
tree | 2a062998e93a7ad7dc28cb44975484c765060950 /app-shells | |
parent | Fixes for CAN 0415, 0685, and cmdline proc leak. (diff) | |
download | historical-6c3949428a9884b2b9c8ff5234c80fc445c01c12.tar.gz historical-6c3949428a9884b2b9c8ff5234c80fc445c01c12.tar.bz2 historical-6c3949428a9884b2b9c8ff5234c80fc445c01c12.zip |
Don't export PS1. Continuation of bug 26951, comments 60-62
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash/Manifest | 4 | ||||
-rw-r--r-- | app-shells/bash/files/bashrc | 3 |
3 files changed, 7 insertions, 5 deletions
diff --git a/app-shells/bash/ChangeLog b/app-shells/bash/ChangeLog index fa9da023a48c..1597b023f0a0 100644 --- a/app-shells/bash/ChangeLog +++ b/app-shells/bash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.47 2004/08/08 01:42:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.48 2004/08/14 03:10:00 agriffis Exp $ + + 13 Aug 2004; Aron Griffis <agriffis@gentoo.org> files/bashrc: + Don't export PS1. Continuation of bug 26951, comments 60-62 07 Aug 2004; Aron Griffis <agriffis@gentoo.org> files/bashrc: Restore red prompt for root #59678 diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest index ae30a0da7f08..b6a85457e755 100644 --- a/app-shells/bash/Manifest +++ b/app-shells/bash/Manifest @@ -1,12 +1,12 @@ MD5 a3a5f5e1cfbb02d35f055dae074bf237 bash-3.0-r4.ebuild 4119 MD5 9b26b6899167a29ee4e9c1ad0d39b5a1 bash-2.05b-r9.ebuild 2909 -MD5 a6058eb57efddb0a0a2e65a72944c242 ChangeLog 10119 +MD5 74109346a9d73cfcbdc241f97e154c97 ChangeLog 10247 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 6a2f5ace1a2dd30b1bee55eba1509027 bash-2.05b-r10.ebuild 3041 MD5 4a3ebcb995491c2730d156b314cbab0b files/bash-3.0-etc-inputrc.patch 1223 MD5 3b905c7c9341c9009bd68f14c047815e files/bash-2.05b-rbash.patch 804 MD5 694b8b1e47e4743e78ee5f7515f76542 files/bash-3.0-posixtrap.patch 789 -MD5 02e68c4ef4c10f71de3aa3fd0ffebb64 files/bashrc 959 +MD5 bf31cdbb653a9ad17112633172d243be files/bashrc 948 MD5 4383b25cd54b24b9f459e338f06d096c files/bash-2.05b-parallel-build.patch 459 MD5 582fb9ed0ca44627978ce6836a5000dc files/config-top.h.diff 487 MD5 0392b634a7a02302d24ccc4a4b349423 files/bash-3.0-local-array.patch 275 diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index 51bec63f8964..0490253fc209 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -1,5 +1,5 @@ # /etc/bash.bashrc: -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/files/bashrc,v 1.2 2004/08/08 01:42:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/files/bashrc,v 1.3 2004/08/14 03:10:00 agriffis Exp $ # # This file is sourced by all *interactive* bash shells on startup, # including some apparently interactive shells such as scp and rcp @@ -29,4 +29,3 @@ else PS1='\u@\h \w \$ ' fi fi -export PS1 |