Skip to content

Commit d83359a

Browse files
committed
fixes regression in common.sh
1 parent 7539f97 commit d83359a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ function apply_patch_series {
4040
gpatch --batch --forward --strip=1 $args -i "$WS/patches-$VERSION/$patch"
4141
done
4242
# Apply SPARC only patches if there are any.
43-
mach | grep sparc > /dev/null || return
44-
test -f "$WS/patches-$VERSION/series-sparc-only" || return
43+
mach | grep sparc > /dev/null || return 0
44+
test -f "$WS/patches-$VERSION/series-sparc-only" || return 0
4545
cat "$WS/patches-$VERSION/series-sparc-only" | while read patch args; do
4646
echo $patch | grep ^\# > /dev/null && continue
4747
gpatch --batch --forward --strip=1 $args -i "$WS/patches-$VERSION/$patch"

0 commit comments

Comments
 (0)