Skip to content

Commit a722d61

Browse files
committed
autogen: Set a default subject prefix for patches
Per discussion at XDC2015, we want this so we can easily distinguish which module a patch is for. There's no way to set this in the server-side config, so setting a default at autogen time is about the best we can do. Reviewed-by: Eric Anholt <[email protected]> Signed-off-by: Adam Jackson <[email protected]>
1 parent 7bb64d8 commit a722d61

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

autogen.sh

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ cd "$srcdir"
99
autoreconf --force -v --install || exit 1
1010
cd "$ORIGDIR" || exit $?
1111

12+
git config --local --get format.subjectPrefix ||
13+
git config --local format.subjectPrefix "PATCH xserver"
14+
1215
if test -z "$NOCONFIGURE"; then
1316
exec "$srcdir"/configure "$@"
1417
fi

0 commit comments

Comments
 (0)