mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-01-04 15:40:25 +01:00
9 lines
200 B
Bash
Executable file
9 lines
200 B
Bash
Executable file
#! /bin/sh
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
(
|
|
cd "$srcdir" &&
|
|
autoreconf --force -v --install
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|