Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 2265153

Browse files
Fix Package Finding (fixes libXi not installed when installing MiceWine-Packages)
1 parent 14a63e8 commit 2265153

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ setupPackages()
304304
mkdir -p "$PREFIX/include"
305305

306306
for package in $PACKAGES; do
307-
packageFullPath=$(ls "$INIT_DIR/built-pkgs/$package"*"$ARCHITECTURE.rat" 2> /dev/zero)
308-
packageCommitFullPath=$(ls "$INIT_DIR/built-pkgs/$package"*"$ARCHITECTURE.commit" 2> /dev/zero)
307+
packageFullPath=$(find "$INIT_DIR/built-pkgs/$package-"*"$ARCHITECTURE.rat" 2> /dev/zero)
308+
packageCommitFullPath=$(ls "$INIT_DIR/built-pkgs/$package-"*"$ARCHITECTURE.commit" 2> /dev/zero)
309309

310310
if [ -f "$packageFullPath" ]; then
311311
packageCommit=$(cat "$packageCommitFullPath")

0 commit comments

Comments
 (0)