From 93449084e4ac6f5b60809f1838f023cb90dbe77b Mon Sep 17 00:00:00 2001 From: Toshaan Bharvani Date: Wed, 22 May 2024 16:57:14 +0200 Subject: [PATCH] initial package creation Signed-off-by: Toshaan Bharvani --- SOURCES/zprofile.rhs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 SOURCES/zprofile.rhs diff --git a/SOURCES/zprofile.rhs b/SOURCES/zprofile.rhs new file mode 100644 index 0000000..03d316f --- /dev/null +++ b/SOURCES/zprofile.rhs @@ -0,0 +1,22 @@ +# +# /etc/zprofile and ~/.zprofile are run for login shells +# + +PATH="$PATH:$HOME/bin" +export PATH + +_src_etc_profile() +{ + # Make /etc/profile happier, and have possible ~/.zshenv options like + # NOMATCH ignored. + # + emulate -L ksh + + # source profile + if [ -f /etc/profile ]; then + source /etc/profile + fi +} +_src_etc_profile + +unset -f _src_etc_profile