1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-05 00:28:52 +02:00

Remove extra space before colons in meson.build files.

The spacing was not consistent so use the style that best matches our general coding standards.
This commit is contained in:
David Steele
2024-03-27 09:53:49 +11:00
parent 7877983acb
commit 014e24889c
6 changed files with 11 additions and 11 deletions

View File

@ -3,11 +3,11 @@
#################################################################################################################################### ####################################################################################################################################
doc_parse_auto_c_inc = custom_target( doc_parse_auto_c_inc = custom_target(
'doc_parse.auto.c.inc', 'doc_parse.auto.c.inc',
output : 'parse.auto.c.inc', output: 'parse.auto.c.inc',
depend_files: [ depend_files: [
'../build/config/config.yaml', '../build/config/config.yaml',
], ],
command : [ command: [
build_code, build_code,
'config', 'config',
'@CURRENT_SOURCE_DIR@/../..', '@CURRENT_SOURCE_DIR@/../..',

View File

@ -30,9 +30,9 @@ cc = meson.get_compiler('c')
# OS-specific settings # OS-specific settings
#################################################################################################################################### ####################################################################################################################################
if host_machine.system() == 'linux' if host_machine.system() == 'linux'
add_global_arguments('-D_POSIX_C_SOURCE=200809L', language : 'c') add_global_arguments('-D_POSIX_C_SOURCE=200809L', language: 'c')
elif host_machine.system() == 'darwin' elif host_machine.system() == 'darwin'
add_global_arguments('-D_DARWIN_C_SOURCE', language : 'c') add_global_arguments('-D_DARWIN_C_SOURCE', language: 'c')
endif endif
#################################################################################################################################### ####################################################################################################################################

View File

@ -3,12 +3,12 @@
#################################################################################################################################### ####################################################################################################################################
help_auto_c_inc = custom_target( help_auto_c_inc = custom_target(
'help.auto.c.inc', 'help.auto.c.inc',
output : 'help.auto.c.inc', output: 'help.auto.c.inc',
depend_files: [ depend_files: [
'../../build/config/config.yaml', '../../build/config/config.yaml',
'../../build/help/help.xml', '../../build/help/help.xml',
], ],
command : [ command: [
build_code, build_code,
'help', 'help',
'@CURRENT_SOURCE_DIR@/../../..', '@CURRENT_SOURCE_DIR@/../../..',

View File

@ -274,7 +274,7 @@ executable(
src_pgbackrest, src_pgbackrest,
help_auto_c_inc, help_auto_c_inc,
interface_auto_c_inc, interface_auto_c_inc,
dependencies : [ dependencies: [
lib_backtrace, lib_backtrace,
lib_bz2, lib_bz2,
lib_openssl, lib_openssl,

View File

@ -3,11 +3,11 @@
#################################################################################################################################### ####################################################################################################################################
interface_auto_c_inc = custom_target( interface_auto_c_inc = custom_target(
'interface.auto.c.inc', 'interface.auto.c.inc',
output : 'interface.auto.c.inc', output: 'interface.auto.c.inc',
depend_files: [ depend_files: [
'../build/postgres/postgres.yaml', '../build/postgres/postgres.yaml',
], ],
command : [ command: [
build_code, build_code,
'postgres', 'postgres',
'@CURRENT_SOURCE_DIR@/../..', '@CURRENT_SOURCE_DIR@/../..',

View File

@ -3,11 +3,11 @@
#################################################################################################################################### ####################################################################################################################################
test_parse_auto_c_inc = custom_target( test_parse_auto_c_inc = custom_target(
'test_parse.auto.c.inc', 'test_parse.auto.c.inc',
output : 'parse.auto.c.inc', output: 'parse.auto.c.inc',
depend_files: [ depend_files: [
'../build/config/config.yaml', '../build/config/config.yaml',
], ],
command : [ command: [
build_code, build_code,
'config', 'config',
'@CURRENT_SOURCE_DIR@/../..', '@CURRENT_SOURCE_DIR@/../..',