diff options
author | tb <> | 2023-06-04 11:33:45 +0000 |
---|---|---|
committer | tb <> | 2023-06-04 11:33:45 +0000 |
commit | 7efe30cd901df7bedff93a9ed4f01e35ddb28150 (patch) | |
tree | b527b46fef6d89b0f5cf97a54578df98e7e6c03b | |
parent | e1592222813d718fc450a6a4799412fe86185a9f (diff) | |
download | openbsd-7efe30cd901df7bedff93a9ed4f01e35ddb28150.tar.gz openbsd-7efe30cd901df7bedff93a9ed4f01e35ddb28150.tar.bz2 openbsd-7efe30cd901df7bedff93a9ed4f01e35ddb28150.zip |
Make ruby-openssl cope with default ruby change
-rw-r--r-- | src/regress/lib/libssl/openssl-ruby/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/openssl-ruby/Makefile b/src/regress/lib/libssl/openssl-ruby/Makefile index f435270ae9..ac925b8e0b 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.9 2022/05/10 19:27:21 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.10 2023/06/04 11:33:45 tb Exp $ |
2 | 2 | ||
3 | OPENSSL_RUBY_TESTS = /usr/local/share/openssl-ruby-tests | 3 | OPENSSL_RUBY_TESTS = /usr/local/share/openssl-ruby-tests |
4 | .if exists(/usr/local/bin/ruby31) | 4 | .if exists(/usr/local/bin/ruby31) |
5 | RUBY_BINREV = 31 | 5 | RUBY_BINREV = 31 |
6 | .else | 6 | .else |
7 | RUBY_BINREV = 30 | 7 | RUBY_BINREV = 32 |
8 | .endif | 8 | .endif |
9 | RUBY = ruby${RUBY_BINREV} | 9 | RUBY = ruby${RUBY_BINREV} |
10 | 10 | ||