mirror of
https://github.com/pdewacht/brlaser
synced 2024-12-27 07:48:21 +01:00
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#! /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
|
|
|