Files
xf86-video-vbox/autogen.sh
Michael Thayer ab07f97612 Initial commit.
2017-10-14 10:23:47 +02:00

15 lines
209 B
Bash
Executable File

#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi