xenocara/app/xinit/autogen.sh

15 lines
209 B
Bash
Raw Normal View History

2007-09-15 11:05:29 -06:00
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
2015-01-25 04:37:57 -07:00
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi