Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autogen.sh 281B

12345678910111213141516
  1. #! /bin/sh
  2. srcdir=`dirname "$0"`
  3. test -z "$srcdir" && srcdir=.
  4. SRCDIR=`(cd "$srcdir" && pwd)`
  5. ORIGDIR=`pwd`
  6. if test "x$SRCDIR" != "x$ORIGDIR"; then
  7. echo "Mesa cannot be built when srcdir != builddir" 1>&2
  8. exit 1
  9. fi
  10. autoreconf -v --install || exit 1
  11. "$srcdir"/configure "$@"