summaryrefslogtreecommitdiff
path: root/xc/extras/Mesa/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'xc/extras/Mesa/bootstrap')
-rwxr-xr-xxc/extras/Mesa/bootstrap13
1 files changed, 13 insertions, 0 deletions
diff --git a/xc/extras/Mesa/bootstrap b/xc/extras/Mesa/bootstrap
new file mode 100755
index 000000000..d32d501da
--- /dev/null
+++ b/xc/extras/Mesa/bootstrap
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+# helps bootstrapping Mesa, when checked out from CVS
+# requires GNU autoconf and GNU automake
+# this is not meant to go into the distributions
+
+test -f ltmain.sh || libtoolize -c -f
+aclocal -I .
+autoheader
+automake -a -c
+autoconf
+
+exit 0