diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2016-04-05 23:58:42 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 22:57:25 +0100 |
| commit | 064ebd5f71fce32edd668cf27b3b883d9a630851 (patch) | |
| tree | f2b0c77148c4c8017b64526538a633d2d0ad0620 | |
| parent | a71db4ca1cf50a103e6a66809c608e4538cf3a9e (diff) | |
| download | poky-064ebd5f71fce32edd668cf27b3b883d9a630851.tar.gz | |
cmake: remove unused dont-run-cross-binaries.patch
It hasn't been used since June 2015 when upgraded the recipe, this patch
was used for crosscompiling, now the crosscompile works well without it,
so remove it.
(From OE-Core rev: b99eec460cb14dce3580b8f5da6ce8b97d2078c5)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch | 23 |
1 files changed, 0 insertions, 23 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 deleted file mode 100644 index 0c059f12ed..0000000000 --- a/meta/recipes-devtools/cmake/cmake/dont-run-cross-binaries.patch +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | cmake: don't run cross-binaries on host machine | ||
| 2 | |||
| 3 | When doing the cross build we obviously cannot run those binaries on | ||
| 4 | host since they can be binary incompatible. | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [embedded specific] | ||
| 7 | |||
| 8 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
| 9 | |||
| 10 | Index: 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) | ||
