From 1feab4fd54cf43572a18ed7754ced7f1943c1397 Mon Sep 17 00:00:00 2001 From: Lars Rademacher Date: Wed, 30 Oct 2013 12:57:29 +0100 Subject: [PATCH] sal: wrong include fixed Include of ArmArchitecture was misspelled Change-Id: Iba3e0a9f1b687cfcd640c74ad9d185f0ffabe510 --- src/core/sal/Architecture.hpp | 2 +- src/core/sal/CMakeLists.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/sal/Architecture.hpp b/src/core/sal/Architecture.hpp index 01419379..2ccee29e 100644 --- a/src/core/sal/Architecture.hpp +++ b/src/core/sal/Architecture.hpp @@ -9,7 +9,7 @@ #endif #ifdef BUILD_ARM -#include "arm/ARMArchitecture.hpp" +#include "arm/ArmArchitecture.hpp" #endif #endif diff --git a/src/core/sal/CMakeLists.txt b/src/core/sal/CMakeLists.txt index 2d565940..66f6a794 100644 --- a/src/core/sal/CMakeLists.txt +++ b/src/core/sal/CMakeLists.txt @@ -74,7 +74,6 @@ elseif(BUILD_PANDA) if(BUILD_ARM) set(SRCS ${SRCS} panda/PandaArmCPU.cc - arm/ArmArchitecture.cc #why is this necessary? ) endif(BUILD_ARM) endif(BUILD_BOCHS)