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 e6bec8e commit 383045dCopy full SHA for 383045d
src/SPC/builder/traits/UnixLibraryTrait.php
@@ -119,7 +119,7 @@ public function getLibExtraCFlags(): string
119
{
120
$env = getenv($this->getSnakeCaseName() . '_CFLAGS') ?: '';
121
if (!str_contains($env, $this->builder->arch_c_flags)) {
122
- $env .= ' ' .$this->builder->arch_c_flags;
+ $env .= ' ' . $this->builder->arch_c_flags;
123
}
124
return trim($env);
125
src/SPC/builder/unix/library/ncurses.php
@@ -15,7 +15,7 @@ protected function build(): void
15
16
UnixAutoconfExecutor::create($this)
17
->appendEnv([
18
- 'LDFLAGS' => getenv('SPC_LIBC') === 'musl' ? '-static' : ''
+ 'LDFLAGS' => getenv('SPC_LIBC') === 'musl' ? '-static' : '',
19
])
20
->configure(
21
'--enable-overwrite',
0 commit comments