Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Commit 2adb196

Browse files
committed
proc/40-patch: display architecture name when applying arch-specific patches
1 parent 7b039c8 commit 2adb196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proc/40-patch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ then
2424
patch $PATCHFLAGS -i "$i" || abdie "Applying patch $i failed"
2525
done
2626
for i in autobuild/patches/*.{patch,diff}."${CROSS:-$ARCH}"; do
27-
abinfo "Applying patch $i ..."
28-
patch $PATCHFLAGS -i "$i" || abdie "Applying patch $i failed"
27+
abinfo "Applying patch $i (for ${CROSS:-$ARCH}) ..."
28+
patch $PATCHFLAGS -i "$i" || abdie "Applying patch $i for ${CROSS:-$ARCH} failed: $?."
2929
done
3030
touch .patch
3131
fi

0 commit comments

Comments
 (0)