1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

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

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);