Set TERM=sortix in init.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-06-20 00:08:17 +02:00
parent 0cd7fb6b76
commit e5d07072f3
1 changed files with 3 additions and 0 deletions

View File

@ -459,6 +459,9 @@ int main(int /*argc*/, char* /*argv*/[])
setenv("PATH", path, 1);
delete[] path;
// Set the terminal type.
setenv("TERM", "sortix", 1);
// Make sure that we have a /tmp directory.
mkdir("/tmp", 01777);