From: Michael Krelin Date: Tue, 8 May 2007 15:43:09 +0000 (+0000) Subject: base-files: only set TERM in profile if it's not set to allow more or less comfortabl... X-Git-Tag: Release-2010-05/1~8868^2~588 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=397955bf9ffc367df8f979d1e441e3f405bed2ee;p=openembedded.git base-files: only set TERM in profile if it's not set to allow more or less comfortable ssh. Closes #805 --- diff --git a/packages/base-files/base-files/profile b/packages/base-files/base-files/profile index a4c16944b9..3dc22f316a 100644 --- a/packages/base-files/base-files/profile +++ b/packages/base-files/base-files/profile @@ -2,8 +2,8 @@ # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). PATH="/usr/local/bin:/usr/bin:/bin" -EDITOR="/bin/vi" # needed for packages like cron -TERM="vt100" # Basic terminal capab. For screen etc. +EDITOR="/bin/vi" # needed for packages like cron +test -z "$TERM" && TERM="vt100" # Basic terminal capab. For screen etc. if [ ! -e /etc/localtime ]; then TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html diff --git a/packages/base-files/base-files_3.0.14.bb b/packages/base-files/base-files_3.0.14.bb index 393e0e3ec2..1e80f4c7f3 100644 --- a/packages/base-files/base-files_3.0.14.bb +++ b/packages/base-files/base-files_3.0.14.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Miscellaneous files for the base system." SECTION = "base" PRIORITY = "required" -PR = "r64" +PR = "r65" LICENSE = "GPL" SRC_URI = " \