Skip to content

Commit

Permalink
Fix file extension mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanaobrien committed Jan 22, 2024
1 parent fde635a commit aebd959
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.emscripten
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ libretro :=
ifeq ($(HAVE_STATIC_DUMMY),1)
DEFINES += -DHAVE_STATIC_DUMMY
else
libretro += libretro_emscripten.bc
libretro += libretro_emscripten.a
endif

ifeq ($(WASM), 1)
Expand Down
2 changes: 2 additions & 0 deletions dist-scripts/dist-cores.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@ for f in `ls -v *_${platform}.${EXT}`; do
echo "-- Building core: $name --"
if [ $PLATFORM = "unix" ]; then
cp -f "$f" ../libretro.${EXT}
elif [ $PLATFORM = "emscripten" ]; then
cp -f "$f" ../libretro_${platform}.a
else
cp -f "$f" ../libretro_${platform}.${EXT}
fi
Expand Down

0 comments on commit aebd959

Please sign in to comment.