Skip to content

Commit ef709a1

Browse files
committed
Remove pkgroot-private
1 parent 4f6e646 commit ef709a1

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/SPC/util/GlobalEnvManager.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ public static function init(): void
4040
if (is_unix()) {
4141
self::addPathIfNotExists(BUILD_BIN_PATH);
4242
self::addPathIfNotExists(PKG_ROOT_PATH . '/bin');
43-
// internally use `WORKING_DIR/pkgroot-private` to avoid volume mount issues in Docker
44-
if (is_dir(WORKING_DIR . '/pkgroot-private/bin')) {
45-
self::addPathIfNotExists(WORKING_DIR . '/pkgroot-private/bin');
46-
}
4743
self::putenv('PKG_CONFIG_PATH=' . BUILD_LIB_PATH . '/pkgconfig');
4844
}
4945

src/SPC/util/PkgConfigUtil.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public static function findPkgConfig(): ?string
2323
{
2424
// Find pkg-config executable
2525
$find_list = [
26-
WORKING_DIR . '/pkgroot-private/bin/pkg-config', // used in Docker build, which is installed inside the container to avoid volume mounting issues
2726
PKG_ROOT_PATH . '/bin/pkg-config',
2827
BUILD_BIN_PATH . '/pkg-config',
2928
];

0 commit comments

Comments
 (0)