Skip to content

Commit

Permalink
meson: simplify definition of MEMORY_ACCOUNTING_DEFAULT
Browse files Browse the repository at this point in the history
Let's just use the simplest form, it doesn't really matter how the define
looks after preprocessing.
  • Loading branch information
keszybz committed Oct 17, 2018
1 parent c02b6ee commit 30538ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlib
conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg'))
conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd'))
conf.set('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default ? 'true' : 'false')
conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default)
conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', memory_accounting_default ? 'yes' : 'no')

substs.set('prefix', prefixdir)
Expand Down

0 comments on commit 30538ff

Please sign in to comment.