Skip to content

Commit 383045d

Browse files
committed
cs fix
1 parent e6bec8e commit 383045d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SPC/builder/traits/UnixLibraryTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function getLibExtraCFlags(): string
119119
{
120120
$env = getenv($this->getSnakeCaseName() . '_CFLAGS') ?: '';
121121
if (!str_contains($env, $this->builder->arch_c_flags)) {
122-
$env .= ' ' .$this->builder->arch_c_flags;
122+
$env .= ' ' . $this->builder->arch_c_flags;
123123
}
124124
return trim($env);
125125
}

src/SPC/builder/unix/library/ncurses.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protected function build(): void
1515

1616
UnixAutoconfExecutor::create($this)
1717
->appendEnv([
18-
'LDFLAGS' => getenv('SPC_LIBC') === 'musl' ? '-static' : ''
18+
'LDFLAGS' => getenv('SPC_LIBC') === 'musl' ? '-static' : '',
1919
])
2020
->configure(
2121
'--enable-overwrite',

0 commit comments

Comments
 (0)