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

Acked-by: Alex Deucher <alexander.deucher@amd.com>
2017-07-27 15:13:36 +09:00

18 lines
361 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-amdgpu"
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi