aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@openbsd.org>2014-07-14 15:43:18 +0200
committerMark Kettenis <kettenis@openbsd.org>2014-07-14 15:43:18 +0200
commit687a2966ba8d86b30bd04bc13123ecfdd55ee043 (patch)
treeb903fcd4865b13c7f1c2e7203935057240fa08b2
parent7a9aa4dd7eaa91a532af39ff299990fac09e49f2 (diff)
downloadportable-687a2966ba8d86b30bd04bc13123ecfdd55ee043.tar.gz
portable-687a2966ba8d86b30bd04bc13123ecfdd55ee043.tar.bz2
portable-687a2966ba8d86b30bd04bc13123ecfdd55ee043.zip
remove stray brackets in --with-enginesdir/openssldir support
ok beck@
Diffstat (limited to '')
-rw-r--r--configure.ac.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac.tpl b/configure.ac.tpl
index 3589101..8accb4d 100644
--- a/configure.ac.tpl
+++ b/configure.ac.tpl
@@ -100,12 +100,12 @@ AC_CHECK_HEADER(sys/sysctl.h, AC_DEFINE(HAVE_SYS_SYSCTL_H))
100AC_ARG_WITH([openssldir], 100AC_ARG_WITH([openssldir],
101 AS_HELP_STRING([--with-openssldir], [Set the default openssl directory]), 101 AS_HELP_STRING([--with-openssldir], [Set the default openssl directory]),
102 AC_DEFINE_UNQUOTED(OPENSSLDIR, "$withval") 102 AC_DEFINE_UNQUOTED(OPENSSLDIR, "$withval")
103]) 103)
104 104
105AC_ARG_WITH([enginesdir], 105AC_ARG_WITH([enginesdir],
106 AS_HELP_STRING([--with-enginesdir], [Set the default engines directory (use with openssldir)]), 106 AS_HELP_STRING([--with-enginesdir], [Set the default engines directory (use with openssldir)]),
107 AC_DEFINE_UNQUOTED(ENGINESDIR, "$withval") 107 AC_DEFINE_UNQUOTED(ENGINESDIR, "$withval")
108]) 108)
109 109
110LT_INIT 110LT_INIT
111 111