mirror of
https://gitlab.freedesktop.org/wayland/weston
synced 2024-11-05 18:24:04 +00:00
5b7e43ac56
Use new libtool syntax and cleaning the code a bit
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" "$@"
|