summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2020-09-28 14:12:35 +0800
committerKhem Raj <raj.khem@gmail.com>2020-09-28 09:17:18 -0700
commit256d24c6d689123ef30128234ef51db8bdec1d80 (patch)
treea4a4a0d3328eb611c7aeb317fbe535e8bdd20c66 /meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch
parent42c71fae324c9e9fec0677044a5011d63bc60a11 (diff)
downloadmeta-openembedded-256d24c6d689123ef30128234ef51db8bdec1d80.tar.gz
minifi-cpp: do not download source during compile
The minifi-cpp needs to download and compile several sources during compile. Add these sources to SRC_URI to make sure they are downloaded in do_fetch not in do_compile. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch')
-rw-r--r--meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch b/meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch
new file mode 100644
index 0000000000..a39e15b791
--- /dev/null
+++ b/meta-oe/recipes-extended/minifi-cpp/files/0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch
@@ -0,0 +1,34 @@
1From 74ade26f7ccd0dbc4ad97cb3082204118a67c92b Mon Sep 17 00:00:00 2001
2From: Yi Zhao <yi.zhao@windriver.com>
3Date: Thu, 10 Sep 2020 15:12:41 +0800
4Subject: [PATCH] cmake/BundledOSSPUUID.cmake: use ossp-uuid local source
5 tarball
6
7Do not download ossp-uuid source during compile.
8
9Upstream-Status: Inappropriate [embedded specific]
10
11Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
12---
13 cmake/BundledOSSPUUID.cmake | 4 +---
14 1 file changed, 1 insertion(+), 3 deletions(-)
15
16diff --git a/cmake/BundledOSSPUUID.cmake b/cmake/BundledOSSPUUID.cmake
17index 1103156d..0cf4bac0 100644
18--- a/cmake/BundledOSSPUUID.cmake
19+++ b/cmake/BundledOSSPUUID.cmake
20@@ -47,10 +47,8 @@ function(use_bundled_osspuuid SOURCE_DIR BINARY_DIR)
21
22 ExternalProject_Add(
23 ossp-uuid-external
24- URL "https://deb.debian.org/debian/pool/main/o/ossp-uuid/ossp-uuid_1.6.2.orig.tar.gz"
25- URL_HASH "SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0"
26 BUILD_IN_SOURCE true
27- SOURCE_DIR "${BINARY_DIR}/thirdparty/ossp-uuid-src"
28+ SOURCE_DIR "${SOURCE_DIR}/thirdparty/uuid-1.6.2"
29 BUILD_COMMAND make
30 CMAKE_COMMAND ""
31 UPDATE_COMMAND ""
32--
332.17.1
34