summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-24 10:27:02 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-24 10:27:02 -0700
commitbfabbab149daaf45a8e5e1875b39f94246bace39 (patch)
tree8e224d3492364df16d43457989e9e21d4778c53f
parent465818b7785ca578fc621aee02c37231b714a2e2 (diff)
autogen: add default patch prefixHEADmaster
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xautogen.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 0006de8..d187cf7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,6 +9,9 @@ cd "$srcdir"
autoreconf -v --install || exit 1
cd "$ORIGDIR" || exit $?
+git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
+ git config --local format.subjectPrefix "PATCH libxcwm"
+
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi