xenocara/app/xmodmap/autogen.sh

15 lines
209 B
Bash
Raw Normal View History

2007-09-16 11:02:03 -06:00
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
2015-05-10 04:22:11 -06:00
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi