Skip to content

Commit 6bc53e6

Browse files
committed
Need to ignore errors in copying libssl and libcrypto since some linux distros don't use them
1 parent 06e2137 commit 6bc53e6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,6 @@ JL_PRIVATE_LIBS += mpfr
198198
endif
199199
ifeq ($(USE_SYSTEM_LIBGIT2),0)
200200
JL_PRIVATE_LIBS += git2
201-
ifeq ($(OS),Linux)
202-
JL_PRIVATE_LIBS += ssl crypto
203-
endif
204201
endif
205202
ifeq ($(USE_SYSTEM_ARPACK),0)
206203
JL_PRIVATE_LIBS += arpack
@@ -270,6 +267,12 @@ endif
270267
fi \
271268
done \
272269
done
270+
271+
# Copy in libssl and libcrypto if they exist
272+
ifeq ($(OS),Linux)
273+
-$(INSTALL_M) $(build_libdir)/libssl*.so* $(DESTDIR)$(private_libdir)
274+
-$(INSTALL_M) $(build_libdir)/libcrypto*.so* $(DESTDIR)$(private_libdir)
275+
endif
273276
endif
274277

275278
ifeq ($(USE_SYSTEM_LIBUV),0)

0 commit comments

Comments
 (0)