We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ad3c0 commit f14df19Copy full SHA for f14df19
src/SPC/builder/unix/library/krb5.php
@@ -11,6 +11,7 @@ trait krb5
11
{
12
protected function build(): void
13
14
+ $origin_source_dir = $this->source_dir;
15
$this->source_dir .= '/src';
16
shell()->cd($this->source_dir)->exec('autoreconf -if');
17
$libs = array_map(fn ($x) => $x->getName(), $this->getDependencies(true));
@@ -51,5 +52,6 @@ protected function build(): void
51
52
'mit-krb5.pc',
53
'gssrpc.pc',
54
]);
55
+ $this->source_dir = $origin_source_dir;
56
}
57
0 commit comments