diff options
author | Brad Smith <brad@comstyle.com> | 2014-08-29 01:34:16 -0400 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2014-08-30 21:20:48 +0200 |
commit | 9ba4844ef5b3ce73e23744cc36eb5ef0dd0410a0 (patch) | |
tree | 0fdfc994d6f257badce98b0c03817ba4cd6d8c55 | |
parent | 343233abeb5f36189e1b0568e35b026e99188354 (diff) |
Remove hardcoded path to OpenSSL for OpenBSD
Since xinit's autoconf script was changed to use AC_PATH_PROGS() to find
openssl this hardcoded path to openssl can be removed. This was noticed
recently when openssl was moved from /usr/sbin to /usr/bin and developers
were looking for anything having hardcoded paths.
Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index ce40168..1da01d6 100644 --- a/configure.ac +++ b/configure.ac @@ -172,9 +172,6 @@ if test "x$MCOOKIE" = x ; then MCOOKIE="$OPENSSL rand -hex 16" else case $host_os in - *openbsd*) - MCOOKIE='/usr/sbin/openssl rand -hex 16' - ;; *solaris*) MCOOKIE="/usr/bin/od -X -A n -N 16 /dev/urandom | /usr/bin/tr -d ' '" ;; |