aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.in
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2012-11-07 00:22:33 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2012-11-07 00:22:33 +0000
commit1b0130961ebc308bba4c9ced3988558bfac103d9 (patch)
tree40dcef0a3f194d4741a8ae3ea9c12015e0bc89df /etc/rc.in
parent3809eac54d575d52d8793df38f826f1d7d7398fb (diff)
checkbashisms: clean up export statements.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'etc/rc.in')
-rw-r--r--etc/rc.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.in b/etc/rc.in
index a58ff1eb..864bd1ba 100644
--- a/etc/rc.in
+++ b/etc/rc.in
@@ -4,7 +4,7 @@
# If $TERM is not set then assume default of @TERM@
# This gives us a nice colour boot :)
-[ -z "$TERM" -o "$TERM" = "dumb" ] && export TERM="@TERM@"
+[ -z "$TERM" -o "$TERM" = "dumb" ] && TERM="@TERM@" && export TERM
# Handle interrupts
trap : SIGINT