From cb681c276dc785b5e945c1a5808b64aab34bd453 Mon Sep 17 00:00:00 2001 From: Manuel Alfayate Corchete Date: Sun, 22 May 2022 16:41:16 +0200 Subject: [PATCH] SDL: make executable name in Makefile match executable name in build.sh (#426) --- src/platform/sdl2/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/platform/sdl2/Makefile b/src/platform/sdl2/Makefile index 1471c56..064300f 100644 --- a/src/platform/sdl2/Makefile +++ b/src/platform/sdl2/Makefile @@ -17,11 +17,11 @@ openlara : install : openlara install -d $(DESTDIR)$(PREFIX)/bin/ - install openlara $(DESTDIR)$(PREFIX)/bin/openlara + install openlara $(DESTDIR)$(PREFIX)/bin/OpenLara uninstall : - rm -f $(DESTDIR)$(PREFIX)/bin/openlara + rm -f $(DESTDIR)$(PREFIX)/bin/OpenLara clean: - rm -f openlara + rm -f OpenLara