From ee179b49207ee867cadc017a441ae0bef3d3a6c0 Mon Sep 17 00:00:00 2001 From: Victor Yeh Date: Mon, 3 Aug 2026 03:08:57 +1000 Subject: [PATCH] macvim crashes on startup https://github.com/macvim-dev/macvim/issues/1692 Use macOS's default strip command. binutils's strip command is malfunctioning. --- src/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile b/src/Makefile index c78d55cc18..da11680942 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1112,6 +1112,7 @@ INSTALL_DATA_R = cp -r ### Program to run on installed binary. Use the second one to disable strip. #STRIP = strip #STRIP = /bin/true +STRIP = /usr/bin/strip ### Permissions for binaries {{{1 BINMOD = 755