summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-11-16 19:59:20 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-03 14:32:47 +0000
commit7a697d070910dbe3289c001f0ea6e4059fd15f96 (patch)
treefcd15b7f6846f06acf7940b9b4ceef7d29fd5e3c /meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch
parentb19ac46bca9b137b33a527e88e02451739bdb690 (diff)
downloadpoky-7a697d070910dbe3289c001f0ea6e4059fd15f96.tar.gz
cmake: Update to 2.8.10.1
(From OE-Core rev: b109a6e33fc7748de65d1ff76528b302e7f92dd8) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch')
-rw-r--r--meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch19
1 files changed, 10 insertions, 9 deletions
diff --git a/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch b/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch
index 4eb1794e4e..0c059f12ed 100644
--- a/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch
+++ b/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch
@@ -7,16 +7,17 @@ Upstream-Status: Inappropriate [embedded specific]
7 7
8Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> 8Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
9 9
10diff -ru cmake-2.8.2.orig/CMakeLists.txt cmake-2.8.2/CMakeLists.txt 10Index: cmake-2.8.10.1/CMakeLists.txt
11--- cmake-2.8.2.orig/CMakeLists.txt 2010-07-28 00:48:42.000000000 +0200 11===================================================================
12+++ cmake-2.8.2/CMakeLists.txt 2010-07-28 01:05:17.000000000 +0200 12--- cmake-2.8.10.1.orig/CMakeLists.txt
13@@ -518,7 +518,8 @@ 13+++ cmake-2.8.10.1/CMakeLists.txt
14@@ -588,7 +588,8 @@ mark_as_advanced(CMAKE_STRICT)
14 15
15 # build the remaining subdirectories 16 # build the remaining subdirectories
16 ADD_SUBDIRECTORY(Source) 17 add_subdirectory(Source)
17-ADD_SUBDIRECTORY(Utilities) 18-add_subdirectory(Utilities)
18+# Come on! Running the cross-binaries on host is not a good idea. 19+# Come on! Running the cross-binaries on host is not a good idea.
19+#ADD_SUBDIRECTORY(Utilities) 20+#add_subdirectory(Utilities)
20 ADD_SUBDIRECTORY(Tests) 21 add_subdirectory(Tests)
21 22
22 # add a test 23 if(BUILD_TESTING)