1
0
mirror of https://github.com/pdewacht/brlaser synced 2024-12-28 16:28:21 +01:00
brlaser/autogen.sh

16 lines
231 B
Bash
Raw Normal View History

2013-12-21 23:40:34 +01:00
#! /bin/sh
srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd "$srcdir"
autoreconf --force -v --install || exit 1
cd "$ORIGDIR" || exit $?
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi