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 c9c9708 commit a6a2f80Copy full SHA for a6a2f80
1 file changed
package/netsurf/package
@@ -85,7 +85,9 @@ prepare() {
85
cd freetype
86
tar --strip-components=1 -xf ../freetype-VER-2-10-4.tar.gz
87
) &
88
- wait "$(jobs -p)"
+
89
+ # shellcheck disable=SC2046
90
+ wait $(jobs -p)
91
}
92
93
build() {
@@ -136,7 +138,8 @@ build() {
136
138
make install
137
139
140
141
142
143
TARGET_WORKSPACE=$(pwd)/build scripts/build.sh
144
145
0 commit comments