mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
Fix invalid mkdir detection on OpenBSD
This was broken by 67e54ce4081abaa16774b93ccd33ccbd1d6c6531, which resulted in " -d" being used as the mkdir_p program. I think this is because $ac_install_sh has been set to '' at the point it is used. There's probably a better way to fix this, but this should allow the OpenBSD CI to continue to work until a better fix is in place.
This commit is contained in:
parent
e9ec6893d2
commit
2725c5dbe0
Notes:
git
2022-07-09 13:08:52 +09:00
@ -492,6 +492,11 @@ AS_CASE(["$target_os"],
|
||||
AC_PROG_LN_S
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_INSTALL
|
||||
|
||||
AS_CASE(["$target_os"],[openbsd*],[
|
||||
ac_cv_path_mkdir="mkdir"
|
||||
])
|
||||
|
||||
RUBY_PROG_MAKEDIRS
|
||||
|
||||
AC_CHECK_PROG([DTRACE], [${ac_tool_prefix}dtrace], [${ac_tool_prefix}dtrace])
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user