From: Mikko Rasa Date: Sun, 8 Jul 2012 20:06:51 +0000 (+0300) Subject: Don't copy cpu from a potentially incompatible architecture X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=58a28fb253292942e042288f1a621b64e0c2ca90;p=builder.git Don't copy cpu from a potentially incompatible architecture --- diff --git a/source/architecture.cpp b/source/architecture.cpp index a416551..5c88354 100644 --- a/source/architecture.cpp +++ b/source/architecture.cpp @@ -84,8 +84,6 @@ Architecture::Architecture(Builder &b, const string &spec): const Architecture &native_arch = builder.get_native_arch(); if(type.empty()) type = native_arch.type; - if(cpu.empty()) - cpu = native_arch.cpu; if(system.empty()) system = native_arch.system; if(!bits)