]> git.pld-linux.org Git - packages/gnucash.git/blob - 285017793d2c0c9f5a8d52b3db42944480e3f557.patch
- adding missing patch
[packages/gnucash.git] / 285017793d2c0c9f5a8d52b3db42944480e3f557.patch
1 From 285017793d2c0c9f5a8d52b3db42944480e3f557 Mon Sep 17 00:00:00 2001
2 From: John Ralls <jralls@ceridwen.us>
3 Date: Wed, 29 Sep 2021 10:35:19 -0700
4 Subject: [PATCH] Use plain cat instead of cmake -E cat to join the
5  migratable-prefs.
6
7 Cmake -E's cat is too new.
8 ---
9  gnucash/gschemas/CMakeLists.txt | 2 +-
10  1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/gnucash/gschemas/CMakeLists.txt b/gnucash/gschemas/CMakeLists.txt
13 index 63da362f47..8b81a01614 100644
14 --- a/gnucash/gschemas/CMakeLists.txt
15 +++ b/gnucash/gschemas/CMakeLists.txt
16 @@ -29,7 +29,7 @@ set(gschema_migration_files ${local_migration_files} CACHE INTERNAL "gschema mig
17  # Provide gnucash runtime with a list of migratable preferences
18  add_custom_command(
19      OUTPUT ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml
20 -    COMMAND ${CMAKE_COMMAND} -E cat ${gschema_migration_files} > ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml
21 +    COMMAND cat ${gschema_migration_files} > ${DATADIR_BUILD}/${PROJECT_NAME}/migratable-prefs.xml
22      DEPENDS ${gschema_migration_files}
23  )
24
This page took 0.063809 seconds and 3 git commands to generate.