From 5e8d400e5c6af48a4f5ac164836c1ca297ed4661 Mon Sep 17 00:00:00 2001 From: Alberto Alonso Ruibal Date: Sat, 8 Aug 2020 17:03:56 +0200 Subject: [PATCH] Bug in the Makefile for psl1ght after adding rtime A "rtime.c" was added to an OBJ list but it should be an "rtime.o". This is also causing that a build step is deleting the rtime.c file. --- Makefile.psl1ght.salamander | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.psl1ght.salamander b/Makefile.psl1ght.salamander index ef504cbdd5..c7ef0a6751 100644 --- a/Makefile.psl1ght.salamander +++ b/Makefile.psl1ght.salamander @@ -70,7 +70,7 @@ OBJ = frontend/frontend_salamander.o \ libretro-common/streams/file_stream.o \ libretro-common/vfs/vfs_implementation.o \ libretro-common/file/config_file.o \ - libretro-common/time/rtime.c \ + libretro-common/time/rtime.o \ file_path_str.o \ verbosity.o