We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d700b12 commit 233fa94Copy full SHA for 233fa94
1 file changed
setup.py
@@ -452,6 +452,11 @@ def run(self):
452
'install_name_tool', '-change', '@executable_path/libSDL2.dylib',
453
'@loader_path/libSDL2.dylib', file_path
454
))
455
+ # remove some files we don't need
456
+ os.remove('build/PC-BASIC-2.0.app/Contents/MacOS/libSDL2.dylib')
457
+ for path in glob.glob('build/PC-BASIC-2.0.app/Contents/MacOS/libnpymath*'):
458
+ os.remove(path)
459
+
460
461
def copy_file(self, src, dst):
462
# catch copy errors, these happen with relative references with funny bracketed names
0 commit comments