mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-03 07:00:17 +01:00
autogen.sh: run git commands in the (potentially) git dir
If the build dir is outside of the git dir, the order matters :) Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Chad Versace <chadversary@chromium.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
a6cdfa5cd8
commit
1bf96af525
1 changed files with 3 additions and 3 deletions
|
|
@ -6,15 +6,15 @@ test -z "$srcdir" && srcdir=.
|
|||
ORIGDIR=`pwd`
|
||||
cd "$srcdir"
|
||||
|
||||
autoreconf --force --verbose --install || exit 1
|
||||
cd "$ORIGDIR" || exit $?
|
||||
|
||||
git config --local --get format.subjectPrefix >/dev/null ||
|
||||
git config --local format.subjectPrefix "PATCH libdrm" 2>/dev/null
|
||||
|
||||
git config --local --get sendemail.to >/dev/null ||
|
||||
git config --local sendemail.to "dri-devel@lists.freedesktop.org" 2>/dev/null
|
||||
|
||||
autoreconf --force --verbose --install || exit 1
|
||||
cd "$ORIGDIR" || exit $?
|
||||
|
||||
if test -z "$NOCONFIGURE"; then
|
||||
"$srcdir"/configure "$@"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue