diff --git a/zprofile.rhs b/zprofile.rhs index 288cec1..db18222 100644 --- a/zprofile.rhs +++ b/zprofile.rhs @@ -3,4 +3,3 @@ # # all bourne shells should source /etc/profile -source /etc/profile diff --git a/zsh.spec b/zsh.spec index 4e2be0f..8cc65c8 100644 --- a/zsh.spec +++ b/zsh.spec @@ -1,7 +1,7 @@ Summary: A shell similar to ksh, but with improvements. Name: zsh Version: 4.0.4 -Release: 4 +Release: 5 License: BSD Group: System Environment/Shells Source0: ftp://ftp.zsh.org/pub/zsh-%{version}.tar.bz2 @@ -97,6 +97,10 @@ fi %config(noreplace) /etc/* %changelog +* Fri Apr 5 2002 Trond Eivind Glomsr�d 4.0.4-5 +- Source /etc/profile from /etc/zshenv instead of /etc/zprofile, + to run things the same way bash do (#62788) + * Tue Apr 2 2002 Trond Eivind Glomsr�d 4.0.4-4 - Explicitly specify blank LDFLAGS to avoid autoconf thinking it should strip when linking diff --git a/zshenv.rhs b/zshenv.rhs index 05b2793..35c5b79 100644 --- a/zshenv.rhs +++ b/zshenv.rhs @@ -6,3 +6,7 @@ # .zshenv should not contain commands that product # output or assume the shell is attached to a tty. # + +# Sourcing here to get it done on all invocations of zsh, +# like bash. +source /etc/profile