Skip to content

Commit

Permalink
gnu-sed: disable ACL
Browse files Browse the repository at this point in the history
This was previously disabled, but opportunistically switched on in
#176589. So let's re-disable it explicitly.

Fixes #178258.
  • Loading branch information
ZhongRuoyu committed Jul 24, 2024
1 parent 25a8420 commit a21f515
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Formula/g/gnu-sed.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ def install
--disable-dependency-tracking
]

args << if OS.mac?
"--program-prefix=g"
args += if OS.mac?
%w[--program-prefix=g]
else
"--without-selinux"
%w[
--disable-acl
--without-selinux
]
end
system "./configure", *args
system "make", "install"
Expand Down

0 comments on commit a21f515

Please # to comment.