and zsh-4c89849c98172c951a9def3690e8647dae76308f.patch and add autoconf to build requirements to make the package build with GCC 14. [boo#1225958] If the request is OK, please forward it to Factory soon so that we can switch the default compiler. OBS-URL: https://build.opensuse.org/package/show/shells/zsh?expand=0&rev=251
23 lines
375 B
Plaintext
23 lines
375 B
Plaintext
#
|
|
# /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
|