From 09c4f34e6623da3327f12e0c623805da76dffe9b Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Fri, 7 Sep 2012 13:07:42 +0200 Subject: [PATCH] Remove -pc from Sortix host triplet. --- sortix/kernel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sortix/kernel.cpp b/sortix/kernel.cpp index 0de92529..2802a31f 100644 --- a/sortix/kernel.cpp +++ b/sortix/kernel.cpp @@ -376,12 +376,12 @@ static void InitThread(void* /*user*/) int argc = 1; const char* argv[] = { "init", NULL }; #if defined(PLATFORM_X86) - const char* cputype = "cputype=i486-pc-sortix"; + const char* cputype = "cputype=i486-sortix"; #elif defined(PLATFORM_X64) - const char* cputype = "cputype=x86_64-pc-sortix"; + const char* cputype = "cputype=x86_64-sortix"; #else #warning No cputype environmental variable provided here. - const char* cputype = "cputype=unknown-pc-sortix"; + const char* cputype = "cputype=unknown-sortix"; #endif int envc = 1; const char* envp[] = { cputype, NULL };