keg: mkpath on main postgresql@X directories

Fix logic in #16966 as it only matched subdirectories

Signed-off-by: Michael Cho <michael@michaelcho.dev>
This commit is contained in:
Michael Cho 2024-04-11 10:24:45 -04:00
parent 8083e2da00
commit 514059da4b
No known key found for this signature in database
GPG Key ID: 55E85E28A7CD1E85

View File

@ -427,7 +427,7 @@ class Keg
link_dir("sbin", verbose:, dry_run:, overwrite:) { :skip_dir } link_dir("sbin", verbose:, dry_run:, overwrite:) { :skip_dir }
link_dir("include", verbose:, dry_run:, overwrite:) do |relative_path| link_dir("include", verbose:, dry_run:, overwrite:) do |relative_path|
case relative_path.to_s case relative_path.to_s
when %r{^postgresql@\d+/} when /^postgresql@\d+/
:mkpath :mkpath
else else
:link :link
@ -446,7 +446,7 @@ class Keg
/^fish/, /^fish/,
%r{^lua/}, # Lua, Lua51, Lua53 all need the same handling. %r{^lua/}, # Lua, Lua51, Lua53 all need the same handling.
%r{^guile/}, %r{^guile/},
%r{^postgresql@\d+/}, /^postgresql@\d+/,
*SHARE_PATHS *SHARE_PATHS
:mkpath :mkpath
else else
@ -470,7 +470,7 @@ class Keg
/^ocaml/, /^ocaml/,
/^perl5/, /^perl5/,
"php", "php",
%r{^postgresql@\d+/}, /^postgresql@\d+/,
/^python[23]\.\d+/, /^python[23]\.\d+/,
/^R/, /^R/,
/^ruby/ /^ruby/