File: autogen.sh

package info (click to toggle)
xserver-xorg-video-amdgpu 18.1.99%2Bgit20190207-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 776 kB
  • sloc: ansic: 9,768; makefile: 76; sh: 11
file content (17 lines) | stat: -rwxr-xr-x 361 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /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