about summary refs log tree commit diff stats
path: root/premake5.lua
diff options
context:
space:
mode:
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/premake5.lua b/premake5.lua
index b00e007..8e86b50 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -8,8 +8,8 @@ project("Pong")
         execute = function()
 	    os.mkdir(string.format("%s/Pong/resources", prefix))
 	    os.executef("cp -r resources/* %s/Pong/resources/", prefix)
-            os.executef("install -m755 bin/*/Pong %s/Pong/pong", prefix)
-            os.exit(0)
+        os.executef("install -m755 bin/*/Pong %s/Pong/pong", prefix)
+        os.exit(0)
         end
     }
 
@@ -103,6 +103,6 @@ project("Pong")
     then
     else
         buildoptions {"`pkgconf --cflags raylib`", "`pkgconf --cflags glfw3`", "`pkgconf --cflags gl`", "`pkgconf --cflags sdl2`", "`pkgconf --cflags SDL2_mixer`", "`pkgconf --cflags glu`"}
-        linkoptions {"`pkgconf --libs raylib`", "`pkgconf --libs glfw3`", "`pkgconf --libs gl`", "`pkgconf --libs sdl2`", "`pkgconf --libs SDL2_mixer`", "`pkgconf --libs glu`"}  
+        linkoptions {"`pkgconf --libs raylib`", "`pkgconf --libs glfw3`", "`pkgconf --libs gl`", "`pkgconf --libs sdl2`", "`pkgconf --libs SDL2_mixer`", "`pkgconf --libs glu`"}
     end