From 494e65653346ae70326e0dd7c45ccee8fa76fac5 Mon Sep 17 00:00:00 2001 From: John Lindal Date: Thu, 9 May 2024 21:08:15 -0700 Subject: [PATCH] macos: fix for crashing apps --- include/jx-af/make/app_targets | 1 + 1 file changed, 1 insertion(+) diff --git a/include/jx-af/make/app_targets b/include/jx-af/make/app_targets index 66519869f..eb4dce6c9 100644 --- a/include/jx-af/make/app_targets +++ b/include/jx-af/make/app_targets @@ -109,6 +109,7 @@ EXE_NAME := $(call EXE,${BIN_NAME}) install:: default @${J_STRIP_DEBUG} ${EXE_NAME} @mkdir -p ${JX_INSTALL_BIN} + @${RM} ${JX_INSTALL_BIN}/${EXE_NAME} @cp ${EXE_NAME} ${JX_INSTALL_BIN} .PHONY : uninstall