Files
xf86-input-synaptics/autogen.sh
Peter Hutterer 0fc2679c4d autogen.sh: support NOCONFIGURE=1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-11-04 15:23:39 +10:00

16 lines
215 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
exec $srcdir/configure "$@"
fi