From e437f6c847f88161b489a7a90aba1bfe70df9244 Mon Sep 17 00:00:00 2001 From: "Joseph C. Osborn" Date: Thu, 13 Mar 2025 09:51:47 -0700 Subject: [PATCH] force use of .bc extension for now under emscripten even though it will need to change later, this is more correct for now. --- Makefile.libretro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 19c7d17..ea4da75 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -444,8 +444,8 @@ endif # Emscripten else ifeq ($(platform), emscripten) - EXT ?= bc - TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT) + EXT := bc + TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT) STATIC_LINKING = 1 # Windows MSVC 2003 Xbox 1