blob: 65fcab2f63664f62e60dfde2bbd68e8556ae3b3b [file] [log] [blame]
Eric Anholt8c641832009-03-26 17:15:11 -07001#! /bin/sh
2
Gaetan Nadona03ef7a2012-01-03 21:12:24 -05003srcdir=`dirname $0`
4test -z "$srcdir" && srcdir=.
5
6ORIGDIR=`pwd`
7cd $srcdir
8
9autoreconf -v --install || exit 1
10cd $ORIGDIR || exit $?
11
Eric Anholteeeb3042017-06-07 16:51:21 -070012git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
13 git config --local format.subjectPrefix "PATCH i-g-t"
14
Tomeu Vizoso12fd5902016-05-19 10:49:29 +020015if test -z "$NOCONFIGURE"; then
16 $srcdir/configure "$@"
17fi