pkg-config -> pkgconf for hyprpm and cmake

This commit is contained in:
Vaxry
2024-04-08 18:05:46 +01:00
committed by Mihai Fufezan
parent 125a8f7e07
commit 0457c2e348
2 changed files with 2 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ eHeadersErrors CPluginManager::headersValid() {
return HEADERS_MISSING;
// find headers commit
std::string cmd = std::format("PKG_CONFIG_PATH=\"{}/share/pkgconfig\" pkg-config --cflags --keep-system-cflags hyprland", DataState::getHeadersPath());
std::string cmd = std::format("PKG_CONFIG_PATH=\"{}/share/pkgconfig\" pkgconf --cflags --keep-system-cflags hyprland", DataState::getHeadersPath());
auto headers = execAndGet(cmd.c_str());
if (!headers.contains("-I/"))