summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-files
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2017-04-03 14:48:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-16 14:08:28 +0100
commit8033fd4ad15e9c7406f0a477484af98270653ca6 (patch)
tree90baa4e453c9485ce9aa6acf3e5cbea95857f235 /meta/recipes-core/base-files
parentad2778693eaa19f591dca5795ed77f3f878546de (diff)
downloadpoky-8033fd4ad15e9c7406f0a477484af98270653ca6.tar.gz
base-files: profile: Simplify setting variables conditionally
It is preferred to use `[ "$FOO" ] || ...` instead of `[ -z "$FOO" ] && ...` as the latter leaves $? set to 1. (From OE-Core rev: d76c68505c36dbf383a989f3c2458abc765e2c19) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/base-files')
-rw-r--r--meta/recipes-core/base-files/base-files/profile14
1 files changed, 6 insertions, 8 deletions
diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-files/profile
index ceaf15f799..a062028226 100644
--- a/meta/recipes-core/base-files/base-files/profile
+++ b/meta/recipes-core/base-files/base-files/profile
@@ -3,15 +3,13 @@
3 3
4PATH="/usr/local/bin:/usr/bin:/bin" 4PATH="/usr/local/bin:/usr/bin:/bin"
5EDITOR="vi" # needed for packages like cron, git-commit 5EDITOR="vi" # needed for packages like cron, git-commit
6test -z "$TERM" && TERM="vt100" # Basic terminal capab. For screen etc. 6[ "$TERM" ] || TERM="vt100" # Basic terminal capab. For screen etc.
7 7
8if [ "$HOME" = "ROOTHOME" ]; then 8# Add /sbin & co to $PATH for the root user
9 PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin 9[ "$HOME" != "ROOTHOME" ] || PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin
10fi 10
11if [ "$PS1" ]; then 11# Set the prompt for bash and ash (no other shells known to be in use here)
12 # works for bash and ash (no other shells known to be in use here) 12[ -z "$PS1" ] || PS1='\u@\h:\w\$ '
13 PS1='\u@\h:\w\$ '
14fi
15 13
16if [ -d /etc/profile.d ]; then 14if [ -d /etc/profile.d ]; then
17 for i in /etc/profile.d/*.sh; do 15 for i in /etc/profile.d/*.sh; do