From 0304c4f92de185cc5c0a9138c67fab89baf425d3 Mon Sep 17 00:00:00 2001 From: Tsukasa OMOTO Date: Fri, 23 May 2014 22:37:21 +0900 Subject: osxbundle: fix recursion termination Prevents the binary from being copied over to the lib directory. --- TOOLS/dylib-unhell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'TOOLS') diff --git a/TOOLS/dylib-unhell.py b/TOOLS/dylib-unhell.py index 764d6c351b..2f3a6c611e 100755 --- a/TOOLS/dylib-unhell.py +++ b/TOOLS/dylib-unhell.py @@ -61,7 +61,7 @@ def lib_name(lib): def process_libraries(libs_dict, binary, processed = []): ls = leafs(libs_dict, processed) diff = set(ls) - set(processed) - if diff == set(): + if diff == set([binary]): return for src in diff: -- cgit v1.2.3