about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-21T16·39+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-21T16·39+0100
commita26307b28192e61bc06b5f5ef42f0fb51858d822 (patch)
treed05107e773a69c2893df0ac5adc082f619941d6c
parent625ffd441d8c98331ee357f4900fa50dd9be05bc (diff)
Fix build
-rw-r--r--configure.ac6
-rw-r--r--perl/Makefile3
2 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 753436911e..aa57543e51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,9 +216,9 @@ AC_SUBST(storedir)
 
 
 # Look for OpenSSL, an optional dependency.
-AC_PATH_PROG(openssl_prog, openssl, openssl) # if not found, call openssl in $PATH
-AC_SUBST(openssl_prog)
-AC_DEFINE_UNQUOTED(OPENSSL_PATH, ["$openssl_prog"], [Path of the OpenSSL binary])
+AC_PATH_PROG(openssl, openssl, openssl) # if not found, call openssl in $PATH
+AC_SUBST(openssl)
+AC_DEFINE_UNQUOTED(OPENSSL_PATH, ["$openssl"], [Path of the OpenSSL binary])
 
 PKG_CHECK_MODULES([OPENSSL], [libcrypto],
   [AC_DEFINE([HAVE_OPENSSL], [1], [Whether to use OpenSSL.])
diff --git a/perl/Makefile b/perl/Makefile
index 8171d1945a..cd07631ca8 100644
--- a/perl/Makefile
+++ b/perl/Makefile
@@ -5,7 +5,8 @@ nix_perl_sources := \
   $(d)/lib/Nix/SSH.pm \
   $(d)/lib/Nix/CopyClosure.pm \
   $(d)/lib/Nix/Config.pm.in \
-  $(d)/lib/Nix/Utils.pm
+  $(d)/lib/Nix/Utils.pm \
+  $(d)/lib/Nix/Crypto.pm
 
 nix_perl_modules := $(nix_perl_sources:.in=)