diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | profile | 9 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2014-10-03 RĂ©mi Verschelde <remi@verschelde.fr> 2.7.21 + + * add /usr/local/games to the PATH in /etc/profile + 2012-03-15 Kamil Rytarowski <n54@gmx.com> 2.7.20 * remove run-parts from this package, it's packaged separately @@ -3,8 +3,13 @@ loginsh=1 -if [ "$UID" -ge 500 ] && ! echo ${PATH} |grep -q /usr/games ; then - PATH=$PATH:/usr/games +if [ "$UID" -ge 500 ] ; then + if ! echo ${PATH} |grep -q /usr/local/games ; then + PATH=$PATH:/usr/local/games + fi + if ! echo ${PATH} |grep -q /usr/games ; then + PATH=$PATH:/usr/games + fi fi umask 022 |