mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-25 00:09:54 +00:00
1b200d9001
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
15 lines
215 B
Bash
Executable File
15 lines
215 B
Bash
Executable File
#! /bin/sh
|
|
|
|
srcdir=`dirname "$0"`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
cd "$srcdir"
|
|
|
|
autoreconf -v --install || exit 1
|
|
cd $ORIGDIR || exit $?
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
"$srcdir"/configure "$@"
|
|
fi
|