blob: 82f6972501c226cbdf2a638d46a0d9c6d9eb5b3b [file] [log] [blame]
Brad Bishop23eaf032019-11-20 05:15:02 -05001From 9c375e3fcf8ff778a5010a07a7da4b6a58adec7c Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
3Date: Sun, 31 Mar 2019 19:11:31 +0200
4Subject: [PATCH] call native helpers
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
Andrew Geissler6aa7eec2023-03-03 12:41:14 -06009Upstream-Status: Inappropriate [oe-specific]
Brad Bishop23eaf032019-11-20 05:15:02 -050010
11Signed-off-by: Andreas MΓΌller <schnitzeltony@gmail.com>
12---
13 src/addressbook/libebook-contacts/CMakeLists.txt | 2 +-
14 src/camel/CMakeLists.txt | 2 +-
15 2 files changed, 2 insertions(+), 2 deletions(-)
16
17diff --git a/src/addressbook/libebook-contacts/CMakeLists.txt b/src/addressbook/libebook-contacts/CMakeLists.txt
18index e9e3259..e749d1b 100644
19--- a/src/addressbook/libebook-contacts/CMakeLists.txt
20+++ b/src/addressbook/libebook-contacts/CMakeLists.txt
21@@ -25,7 +25,7 @@ target_link_libraries(gen-western-table
22
23 add_custom_command(
24 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
25- 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
26+ COMMAND gen-western-table "${CMAKE_CURRENT_SOURCE_DIR}/e-name-western-tables.h.in" >${CMAKE_CURRENT_BINARY_DIR}/e-name-western-tables.h
27 DEPENDS gen-western-table e-name-western-tables.h.in
28 )
29
30diff --git a/src/camel/CMakeLists.txt b/src/camel/CMakeLists.txt
31index be626a8..14ac8b8 100644
32--- a/src/camel/CMakeLists.txt
33+++ b/src/camel/CMakeLists.txt
34@@ -10,7 +10,7 @@ target_include_directories(camel-gen-tables PUBLIC
35
36 add_custom_command(
37 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
38- COMMAND ${CMAKE_CURRENT_BINARY_DIR}/camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
39+ COMMAND camel-gen-tables >${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c
40 DEPENDS camel-gen-tables
41 )
42
43--
442.20.1
45