summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2026-06-18 02:48:09 +0000
committertb <>2026-06-18 02:48:09 +0000
commit32f0851efda1c647523f8eb462764417080f0238 (patch)
tree7951d7aac29020070bf6299f504bdc92c4c8cf59
parent0f6d779c7005d183ee4dd8269ef00b8a12fc120e (diff)
downloadopenbsd-32f0851efda1c647523f8eb462764417080f0238.tar.gz
openbsd-32f0851efda1c647523f8eb462764417080f0238.tar.bz2
openbsd-32f0851efda1c647523f8eb462764417080f0238.zip
openssl-ruby-tests: work with ruby34 and ruby40
-rw-r--r--src/regress/lib/libssl/openssl-ruby/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/openssl-ruby/Makefile b/src/regress/lib/libssl/openssl-ruby/Makefile
index 19d2f2fc40..77aaab0fd7 100644
--- a/src/regress/lib/libssl/openssl-ruby/Makefile
+++ b/src/regress/lib/libssl/openssl-ruby/Makefile
@@ -1,10 +1,10 @@
1# $OpenBSD: Makefile,v 1.17 2025/06/27 03:32:08 tb Exp $ 1# $OpenBSD: Makefile,v 1.18 2026/06/18 02:48:09 tb Exp $
2 2
3OPENSSL_RUBY_TESTS = /usr/local/share/openssl-ruby-tests 3OPENSSL_RUBY_TESTS = /usr/local/share/openssl-ruby-tests
4.if exists(/usr/local/bin/ruby33) 4.if exists(/usr/local/bin/ruby34)
5RUBY_BINREV = 33
6.else
7RUBY_BINREV = 34 5RUBY_BINREV = 34
6.else
7RUBY_BINREV = 40
8.endif 8.endif
9RUBY = ruby${RUBY_BINREV} 9RUBY = ruby${RUBY_BINREV}
10 10