at master 495 B view raw
1diff --git a/raylib/build.py b/raylib/build.py 2index d6d0823..af2b274 100644 3--- a/raylib/build.py 4+++ b/raylib/build.py 5@@ -68,7 +68,7 @@ def check_sdl_pkgconfig_installed(): 6 7 def get_the_include_path_from_pkgconfig(libname): 8 return subprocess.run( 9- ['pkg-config', '--variable=includedir', os.environ.get("PKG_CONFIG_LIB_" + libname, 'raylib')], text=True, 10+ ['pkg-config', '--variable=includedir', libname], text=True, 11 stdout=subprocess.PIPE).stdout.strip() 12 13