fix ldap for postgresql

This commit is contained in:
DubbleClick
2025-06-07 23:00:26 +07:00
parent 08d3849c43
commit 2f53915064
5 changed files with 14 additions and 9 deletions

View File

@@ -49,5 +49,8 @@ trait libxslt
->execWithEnv('make install DESTDIR=' . escapeshellarg(BUILD_ROOT_PATH));
$this->patchPkgconfPrefix(['libexslt.pc']);
$this->patchLaDependencyPrefix(['libxslt.la', 'libexslt.la']);
shell()->cd(BUILD_LIB_PATH)
->exec("ar -t libxslt.a | grep '\\.a$' | xargs -n1 ar d libxslt.a")
->exec("ar -t libexslt.a | grep '\\.a$' | xargs -n1 ar d libexslt.a");
}
}