Merge pull request #2173 from lemmi/bash

bash: source system bashrc on login
This commit is contained in:
Juan RP 2015-08-05 09:25:22 +02:00
commit 804ad03eb9
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,7 @@
# Check for interactive bash
[ -z "$BASH_VERSION" -o -z "$PS1" ] && return
# Bash login shells only run /etc/profile
# Bash non-login shells run only /etc/bash/bashrc
# We want to source /etc/bash/bashrc in any case
[ -f /etc/bash/bashrc ] && . /etc/bash/bashrc

View file

@ -3,7 +3,7 @@ pkgname=bash
_bash_distver=4.3
_bash_patchlevel=039
version=${_bash_distver}.${_bash_patchlevel}
revision=5
revision=6
wrksrc=${pkgname}-${_bash_distver}
build_pie=yes
build_style=gnu-configure
@ -45,4 +45,5 @@ post_install() {
ln -s bash ${DESTDIR}/usr/bin/rbash
vmkdir /etc/bash
vinstall ${FILESDIR}/bashrc 644 etc/bash
vinstall ${FILESDIR}/bash.sh 644 etc/profile.d
}