diff options
author | Gustavo De Nardin <spuk@mandriva.org> | 2009-04-11 20:25:48 +0000 |
---|---|---|
committer | Gustavo De Nardin <spuk@mandriva.org> | 2009-04-11 20:25:48 +0000 |
commit | d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc (patch) | |
tree | c6f3cd56a6309b5bdf61a1e663ba5f1d05b3c42f | |
parent | 4dd175580541a16dc3ce4e7d7d3570077eb0523e (diff) | |
download | setup-d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc.tar setup-d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc.tar.gz setup-d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc.tar.bz2 setup-d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc.tar.xz setup-d7b6987f0f31a3c9b215d7026a7e67ddb2094cfc.zip |
- 2.7.172.7.17
- stop csh from sourcing /etc/profile.d/* on non-interactive shells
(bug #49407, comment 6)
- updated NEWS
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | csh.cshrc | 6 |
3 files changed, 18 insertions, 1 deletions
@@ -1,5 +1,5 @@ PACKAGE = setup -VERSION = 2.7.16 +VERSION = 2.7.17 SVNPATH = svn+ssh://svn.mandriva.com/svn/soft/$(PACKAGE) LIST = csh.cshrc csh.login host.conf hosts.allow hosts.deny inputrc \ @@ -1,3 +1,14 @@ +2009-04-11 Gustavo De Nardin <gustavodn@mandriva.com> 2.7.17 + + * stop csh from sourcing /etc/profile.d/* on non-interactive shells + (#49407 comment 6) + +2009-01-09 Frederic Crozat <fcrozat@mandriva.com> 2.7.16 + + * add dialout group (needed by latest udev, common with Debian) + +2009-01-07 Pixel <pixel@mandriva.com> + * handle control + left/right arrow in gnome-terminal (#36287) 2008-05-14 Guillaume Rousse <guillomovitch@mandriva.org> 2.7.12 @@ -17,6 +17,9 @@ if ($?prompt) then else set prompt=\[`id -nu`@`hostname -s`\]\$\ endif +else + # nothing more to do for non-interactive shell + goto OUT endif test -d /etc/profile.d @@ -34,3 +37,6 @@ if ($status == 0) then end unset i nonomatch endif + + +OUT: |