mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
* a native variant had to be introduced for code-generator tools * gobject-introspection builds theoretically :) Unfortunataelly qemu runs with 100% CPU load and never returns -> disable introspection for now * add PACKAGECONFIGs for new dependencies - disabled by default * give up fine grained packaging: It was broken over the years completely and nobody seemed to take care. * ICU-patch does not apply anymore and it seems upstream has fixed issues with ICU * add upstream-version-is-even to inherit * rename folder containing recipe * get rid of gconf dependency Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
46 lines
1.8 KiB
Diff
46 lines
1.8 KiB
Diff
From 9c375e3fcf8ff778a5010a07a7da4b6a58adec7c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
|
Date: Sun, 31 Mar 2019 19:11:31 +0200
|
|
Subject: [PATCH] call native helpers
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Upstream-Status: Inappropriate[oe-specific]
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
---
|
|
src/addressbook/libebook-contacts/CMakeLists.txt | 2 +-
|
|
src/camel/CMakeLists.txt | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/addressbook/libebook-contacts/CMakeLists.txt b/src/addressbook/libebook-contacts/CMakeLists.txt
|
|
index e9e3259..e749d1b 100644
|
|
--- a/src/addressbook/libebook-contacts/CMakeLists.txt
|
|
+++ b/src/addressbook/libebook-contacts/CMakeLists.txt
|
|
@@ -25,7 +25,7 @@ target_link_libraries(gen-western-table
|
|
|
|
add_custom_command(
|
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
|
|
- COMMAND ${CMAKE_CURRENT_BINARY_DIR}/gen-western-table "${CMAKE_CURRENT_SOURCE_DIR}/e-name-western-tables.h.in" >${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
|
|
+ COMMAND gen-western-table "${CMAKE_CURRENT_SOURCE_DIR}/e-name-western-tables.h.in" >${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
|
|
DEPENDS gen-western-table e-name-western-tables.h.in
|
|
)
|
|
|
|
diff --git a/src/camel/CMakeLists.txt b/src/camel/CMakeLists.txt
|
|
index be626a8..14ac8b8 100644
|
|
--- a/src/camel/CMakeLists.txt
|
|
+++ b/src/camel/CMakeLists.txt
|
|
@@ -10,7 +10,7 @@ target_include_directories(camel-gen-tables PUBLIC
|
|
|
|
add_custom_command(
|
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
|
|
- COMMAND ${CMAKE_CURRENT_BINARY_DIR}/camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
|
|
+ COMMAND camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
|
|
DEPENDS camel-gen-tables
|
|
)
|
|
|
|
--
|
|
2.20.1
|
|
|