diff options
author | bvr-yr <[email protected]> | 2024-04-12 21:49:33 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-12 19:49:33 +0100 |
commit | 32147f5e91d5423fd6c509b3c4619f382b66b628 (patch) | |
tree | d663ccffb3c548361c16d361b327221b03d5dba5 /hyprpm/src | |
parent | d8d0d3b20bdb4e4320989349dacd6deb17cfb619 (diff) | |
download | Hyprland-32147f5e91d5423fd6c509b3c4619f382b66b628.tar.gz Hyprland-32147f5e91d5423fd6c509b3c4619f382b66b628.zip |
hyprpm: fix wlroots path (#5567)
Diffstat (limited to 'hyprpm/src')
-rw-r--r-- | hyprpm/src/core/PluginManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp index b7453666..5dce21e5 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -338,7 +338,7 @@ eHeadersErrors CPluginManager::headersValid() { else headers = ""; - if (PATH.ends_with("protocols") || PATH.ends_with("wlroots")) + if (PATH.ends_with("protocols") || PATH.ends_with("wlroots-hyprland")) continue; verHeader = removeBeginEndSpacesTabs(PATH.substr(2)) + "/hyprland/src/version.h"; @@ -436,7 +436,7 @@ bool CPluginManager::updateHeaders(bool force) { progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "cmake returned: " + ret); // le hack. Wlroots has to generate its build/include - ret = execAndGet("cd /tmp/hyprpm/hyprland/subprojects/wlroots && meson setup -Drenderers=gles2 -Dexamples=false build"); + ret = execAndGet("cd /tmp/hyprpm/hyprland/subprojects/wlroots-hyprland && meson setup -Drenderers=gles2 -Dexamples=false build"); if (m_bVerbose) progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "meson returned: " + ret); |