Skip to content

Commit

Permalink
meson: Add missing prefix to system path defines
Browse files Browse the repository at this point in the history
  • Loading branch information
heftig authored and ueno committed Sep 11, 2019
1 parent 64a7722 commit 17b2edb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions p11-kit/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ libp11_kit_internal_sources += custom_target('generate virtual-fixed-generated.h
libp11_kit_internal_sources += 'virtual.c'

libp11_kit_internal_c_args = [
'-DP11_SYSTEM_CONFIG_FILE="@0@"'.format(p11_system_config_file),
'-DP11_SYSTEM_CONFIG_MODULES="@0@"'.format(p11_system_config_modules),
'-DP11_PACKAGE_CONFIG_MODULES="@0@"'.format(p11_package_config_modules),
'-DP11_SYSTEM_CONFIG_FILE="@0@"'.format(prefix / p11_system_config_file),
'-DP11_SYSTEM_CONFIG_MODULES="@0@"'.format(prefix / p11_system_config_modules),
'-DP11_PACKAGE_CONFIG_MODULES="@0@"'.format(prefix / p11_package_config_modules),
'-DP11_USER_CONFIG_FILE="@0@"'.format(p11_user_config_file),
'-DP11_USER_CONFIG_MODULES="@0@"'.format(p11_user_config_modules),
'-DP11_MODULE_PATH="@0@"'.format(p11_module_path)
'-DP11_MODULE_PATH="@0@"'.format(prefix / p11_module_path)
]

libp11_kit_internal = static_library('p11-kit-internal',
Expand Down

0 comments on commit 17b2edb

Please sign in to comment.