Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

autogen.sh 295B

123456789101112131415161718
  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. MAKEFLAGS=""
  11. autoreconf -v --install || exit 1
  12. "$srcdir"/configure "$@"