Rather than having the user run `make autoconf' and have the Makefile
setup the configs/current -> autoconf symlink, we can just do that in
configure. This allows the user to just run `make' to build.
dnl Substitute the config
AC_OUTPUT([configs/autoconf])
+dnl Replace the configs/current symlink
+if test -f configs/current || test -L configs/current; then
+ rm -f configs/current
+fi
+ln -s autoconf configs/current
+
dnl
dnl Output some configuration info for the user
dnl
fi
echo ""
-echo " Run 'make autoconf' to build Mesa"
+echo " Run 'make' to build Mesa"
echo ""