From 533ed500c7d4b6da1ec66024e7caa33c2180cdf7 Mon Sep 17 00:00:00 2001 From: sergio Date: Mon, 29 Jun 2026 15:49:27 -0400 Subject: [PATCH] =?UTF-8?q?Etapa=20G:=20oniguruma=20=E2=80=94=20chmod=20-R?= =?UTF-8?q?=20u+w=20antes=20de=20configure=20(tarball=20extrae=20src/=20si?= =?UTF-8?q?n=20escritura)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- recipes/oniguruma.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/oniguruma.toml b/recipes/oniguruma.toml index 84724d51..34fc6b92 100644 --- a/recipes/oniguruma.toml +++ b/recipes/oniguruma.toml @@ -16,4 +16,6 @@ link = "static" flags = [] [build.phases] -configure = "./configure --prefix=/usr --enable-posix-api=yes" +# el tarball extrae src/ sin permiso de escritura p/ el uid del sandbox ⇒ config.status no puede crear +# src/Makefile. chmod -R u+w antes de configure (inocuo, sólo permisos). +configure = "chmod -R u+w . && ./configure --prefix=/usr --enable-posix-api=yes"