blob: 0c059f12ed47c50f17ee768ce6264edff9ed41ec [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001cmake: don't run cross-binaries on host machine
2
3When doing the cross build we obviously cannot run those binaries on
4host since they can be binary incompatible.
5
6Upstream-Status: Inappropriate [embedded specific]
7
8Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
9
10Index: cmake-2.8.10.1/CMakeLists.txt
11===================================================================
12--- cmake-2.8.10.1.orig/CMakeLists.txt
13+++ cmake-2.8.10.1/CMakeLists.txt
14@@ -588,7 +588,8 @@ mark_as_advanced(CMAKE_STRICT)
15
16 # build the remaining subdirectories
17 add_subdirectory(Source)
18-add_subdirectory(Utilities)
19+# Come on! Running the cross-binaries on host is not a good idea.
20+#add_subdirectory(Utilities)
21 add_subdirectory(Tests)
22
23 if(BUILD_TESTING)