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 84fb354 commit c0ea47cCopy full SHA for c0ea47c
src/SPC/builder/unix/UnixBuilderBase.php
@@ -186,11 +186,7 @@ protected function sanityCheck(int $build_target): void
186
}
187
188
// sanity check for embed
189
- if (($build_target & BUILD_TARGET_EMBED) === BUILD_TARGET_EMBED ||
190
- file_exists(BUILD_BIN_PATH . '/php-config') &&
191
- file_exists(BUILD_BIN_PATH . '/phpize') &&
192
- (file_exists(BUILD_LIB_PATH . '/libphp.a') || file_exists(BUILD_LIB_PATH . '/libphp.so'))
193
- ) {
+ if (($build_target & BUILD_TARGET_EMBED) === BUILD_TARGET_EMBED) {
194
logger()->info('running embed sanity check');
195
$sample_file_path = SOURCE_PATH . '/embed-test';
196
if (!is_dir($sample_file_path)) {
0 commit comments