Skip to content

Commit a6a2f80

Browse files
committed
Fix netsurf build
1 parent c9c9708 commit a6a2f80

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

package/netsurf/package

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ prepare() {
8585
cd freetype
8686
tar --strip-components=1 -xf ../freetype-VER-2-10-4.tar.gz
8787
) &
88-
wait "$(jobs -p)"
88+
89+
# shellcheck disable=SC2046
90+
wait $(jobs -p)
8991
}
9092

9193
build() {
@@ -136,7 +138,8 @@ build() {
136138
make install
137139
) &
138140

139-
wait "$(jobs -p)"
141+
# shellcheck disable=SC2046
142+
wait $(jobs -p)
140143
TARGET_WORKSPACE=$(pwd)/build scripts/build.sh
141144
}
142145

0 commit comments

Comments
 (0)