summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-09-27 10:10:18 +0200
committerStef Walter <stefw@collabora.co.uk>2011-09-27 10:10:18 +0200
commitd3e245f579d917d1393624b6ecf3ae0c3748bbb3 (patch)
treeca53553076c39b4f8da12c97184359627a0d1ae1
parentfcb71c3962314b48e9f8bd7f82673fa4e065607d (diff)
Don't expand p11-kit config variables in configure.
* Expand them later in Makefile and pkg-config file
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f5c1e04..2f46c0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,9 +65,9 @@ AC_ARG_WITH([module-path],
[module_path=$libdir/pkcs11])
# We expand these so we have concrete paths
-p11_system_config=$(eval echo $system_config_dir)
-p11_system_config_file=$(eval echo $p11_system_config/pkcs11.conf)
-p11_system_config_modules=$(eval echo $p11_system_config/modules)
+p11_system_config=$system_config_dir
+p11_system_config_file=$p11_system_config/pkcs11.conf
+p11_system_config_modules=$p11_system_config/modules
p11_user_config="~/.pkcs11"
p11_user_config_file="$p11_user_config/pkcs11.conf"
p11_user_config_modules="$p11_user_config/modules"