From 3f211415ca7c87a3a225272563de73dcb9fbfcfc Mon Sep 17 00:00:00 2001 From: rmnull Date: Mon, 22 Jun 2020 01:22:22 +0530 Subject: [PATCH] don't warn "no interpreter found" for Shared ELF objects. --- Library/Homebrew/os/linux/elf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/linux/elf.rb b/Library/Homebrew/os/linux/elf.rb index 6e7eda8d3a..83cd6e8982 100644 --- a/Library/Homebrew/os/linux/elf.rb +++ b/Library/Homebrew/os/linux/elf.rb @@ -78,7 +78,7 @@ module ELFShim begin patchelf_patcher.interpreter.present? rescue PatchELF::PatchError => e - opoo e + opoo e unless e.to_s.start_with? "No interpreter found" false end elsif which "readelf"