libxkbcommon/autogen.sh

15 lines
233 B
Bash
Raw Normal View History

#!/bin/sh -e
2009-01-13 19:25:35 -07:00
srcdir=`dirname "$0"`
2009-01-13 19:25:35 -07:00
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd "$srcdir"
2009-01-13 19:25:35 -07:00
autoreconf --verbose --install --force --warnings=all
cd "$ORIGDIR"
2009-01-13 19:25:35 -07:00
if test -z "$NOCONFIGURE"; then
exec "$srcdir/configure" "$@"
fi