From a21f515006b4cda97c9ce234a23fa86be1679249 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Wed, 24 Jul 2024 12:56:06 +0800 Subject: [PATCH] gnu-sed: disable ACL This was previously disabled, but opportunistically switched on in #176589. So let's re-disable it explicitly. Fixes #178258. --- Formula/g/gnu-sed.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Formula/g/gnu-sed.rb b/Formula/g/gnu-sed.rb index 8ad8a91049c66..834535d7be6c8 100644 --- a/Formula/g/gnu-sed.rb +++ b/Formula/g/gnu-sed.rb @@ -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"