mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 22:35:25 +01:00
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From b6d8dbb7e930f5caa9e3e3c71706b0cf9eea7bb3 Mon Sep 17 00:00:00 2001
|
|
From: Mingli Yu <mingli.yu@windriver.com>
|
|
Date: Fri, 23 Sep 2022 12:05:17 +0800
|
|
Subject: [PATCH] CMakeLists.txt: not include import_executables.cmake
|
|
|
|
building failed since native does not generate import_executables.cmake
|
|
In fact, our building system will export the needed commands.
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
---
|
|
CMakeLists.txt | 5 -----
|
|
1 file changed, 5 deletions(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 3828420c..ee38615a 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -428,11 +428,6 @@ CHECK_LIBFMT()
|
|
ADD_SUBDIRECTORY(tpool)
|
|
CHECK_SYSTEMD()
|
|
|
|
-IF(CMAKE_CROSSCOMPILING AND NOT DEFINED CMAKE_CROSSCOMPILING_EMULATOR)
|
|
- SET(IMPORT_EXECUTABLES "IMPORTFILE-NOTFOUND" CACHE FILEPATH "Path to import_executables.cmake from a native build")
|
|
- INCLUDE(${IMPORT_EXECUTABLES})
|
|
-ENDIF()
|
|
-
|
|
#
|
|
# Setup maintainer mode options. Platform checks are
|
|
# not run with the warning options as to not perturb fragile checks
|