From c156b6d66b676e0cd3e66f6afb504e5c514f3415 Mon Sep 17 00:00:00 2001 From: relikd Date: Sun, 31 Aug 2025 13:30:51 +0200 Subject: [PATCH] fix: warn dylib "@@" prefix --- brew.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/brew.py b/brew.py index 10201d8..f9baf3b 100755 --- a/brew.py +++ b/brew.py @@ -1550,11 +1550,11 @@ class Fixer: newRef = os.path.relpath(oldRef, repl1) elif oldRef.startswith('@@HOMEBREW_PREFIX@@'): newRef = os.path.relpath(oldRef, repl2) - elif oldRef.startswith('@'): - Log.debug('unhandled dylib link', oldRef) + elif oldRef.startswith('@@'): + Log.warn('unhandled dylib link', oldRef, summary=True) continue else: - continue # probably fine + continue # probably fine (incl. @rpath, @executable_path) newRef = '@executable_path/' + newRef if not did_change: