Files
xf86-video-ati/autogen.sh
Michel Dänzer 377c9dc7e5 autogen.sh: Pass -f to autoreconf
To ensure that any existing copies of autotools files will be replaced
with the current versions.

(Cherry picked from amdgpu commit a47c0093338d80d84e7033ad15d051925d542ca0)
Acked-by: Alex Deucher <alexander.deucher@amd.com>
2017-07-28 11:57:41 +09:00

18 lines
358 B
Bash
Executable File

#! /bin/sh
srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd "$srcdir"
autoreconf -f -v --install || exit 1
cd "$ORIGDIR" || exit $?
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
git config --local format.subjectPrefix "PATCH xf86-video-ati"
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi