about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.txt1
-rw-r--r--premake5.lua2
2 files changed, 2 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index f3ade5b..aaa1daf 100644
--- a/README.txt
+++ b/README.txt
@@ -33,6 +33,7 @@ Build:
             - SDL2_mixer - For sound
             - premake5 - To generate build files
             - pkgconf (not pkg-config)
+            - Mesa
         2. Run `premake5 check_deps` to make sure you have all dependencies.
         3. Run `premake5 gmake2`
         4. Run `make` or `gmake`
diff --git a/premake5.lua b/premake5.lua
index 5fcf892..e646531 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -35,7 +35,7 @@ project("Pong")
         trigger = "check_deps",
         description = "Check if you have all the dependencies installed.",
         execute = function()
-            io.write("Pkg-config: ")
+            io.write("Pkgconf: ")
             io.flush()
             Pkgconf_Result = os.executef("which pkgconf")
             AllGood = true