diff options
author | Andreas Metzler <ametzler@downhill.at.eu.org> | 2011-09-26 08:31:39 +0200 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-09-26 08:31:39 +0200 |
commit | a1cc80045864777db8c77e711f0a8efaad949c3e (patch) | |
tree | bbb40edd6c24d7824d7d22828623eb2f03d7b302 /p11-kit | |
parent | a081b6652acc9d9a9af22a266f9175f689b8c5d1 (diff) |
Fix quoting of build variables
https://bugs.freedesktop.org/show_bug.cgi?id=40985
Diffstat (limited to 'p11-kit')
-rw-r--r-- | p11-kit/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/p11-kit/Makefile.am b/p11-kit/Makefile.am index 26a03b1..3b838b3 100644 --- a/p11-kit/Makefile.am +++ b/p11-kit/Makefile.am @@ -6,8 +6,8 @@ INCLUDES = \ -DP11_SYSTEM_CONFIG_FILE=\""$(p11_system_config_file)"\" \ -DP11_SYSTEM_CONFIG_MODULES=\""$(p11_system_config_modules)"\" \ -DP11_USER_CONFIG_FILE=\""$(p11_user_config_file)"\" \ - -DP11_USER_CONFIG_MODULES=\""$p11_user_config_modules"\" \ - -DP11_MODULE_PATH=\""$p11_module_path"\" \ + -DP11_USER_CONFIG_MODULES=\""$(p11_user_config_modules)"\" \ + -DP11_MODULE_PATH=\""$(p11_module_path)"\" \ $(NULL) incdir = $(includedir)/p11-kit-1/p11-kit |