diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/check-libc.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/check-libc.m4 b/m4/check-libc.m4 index f9ddf73..066b394 100644 --- a/m4/check-libc.m4 +++ b/m4/check-libc.m4 | |||
@@ -150,9 +150,9 @@ fi | |||
150 | 150 | ||
151 | AC_DEFUN([GENERATE_CRYPTO_PORTABLE_SYM], [ | 151 | AC_DEFUN([GENERATE_CRYPTO_PORTABLE_SYM], [ |
152 | crypto_sym=$srcdir/crypto/crypto.sym | 152 | crypto_sym=$srcdir/crypto/crypto.sym |
153 | crypto_p_sym=$srcdir/crypto/crypto_portable.sym | 153 | crypto_p_sym=./crypto/crypto_portable.sym |
154 | echo "generating $crypto_p_sym ..." | 154 | echo "generating $crypto_p_sym ..." |
155 | chmod u+w $srcdir/crypto | 155 | mkdir -p ./crypto |
156 | cp $crypto_sym $crypto_p_sym | 156 | cp $crypto_sym $crypto_p_sym |
157 | chmod u+w $crypto_p_sym | 157 | chmod u+w $crypto_p_sym |
158 | if test "x$ac_cv_func_arc4random_buf" = "xno" ; then | 158 | if test "x$ac_cv_func_arc4random_buf" = "xno" ; then |