diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-13 20:25:46 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-13 20:25:46 +0900 |
commit | 755afbe5e465c4f3b67abe3d053dd3e6e0da3104 (patch) | |
tree | ddb164171d3167352b6250e8532ec356dd794703 | |
parent | 858628bc77594d37076f5ba059ee07370adb485b (diff) | |
download | portable-755afbe5e465c4f3b67abe3d053dd3e6e0da3104.tar.gz portable-755afbe5e465c4f3b67abe3d053dd3e6e0da3104.tar.bz2 portable-755afbe5e465c4f3b67abe3d053dd3e6e0da3104.zip |
Ignore ar command error
'ar d' command gets error on macos if specified object not exist.
-rw-r--r-- | ssl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 66d6b48..6f44e48 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -25,7 +25,7 @@ libssl_la_objects.mk: Makefile | |||
25 | 25 | ||
26 | .PHONY: remove_bs_objects | 26 | .PHONY: remove_bs_objects |
27 | remove_bs_objects: libssl.la | 27 | remove_bs_objects: libssl.la |
28 | $(AR) dv $(abs_top_builddir)/ssl/.libs/libssl.a \ | 28 | -$(AR) dv $(abs_top_builddir)/ssl/.libs/libssl.a \ |
29 | bs_ber.o bs_cbb.o bs_cbs.o | 29 | bs_ber.o bs_cbb.o bs_cbs.o |
30 | 30 | ||
31 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym | 31 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym |