Created attachment 55933 [details] [review] Patch extracted with git format-patch As summary says, MKDIR_P is not defined and compiling fails with: make[4]: Entering directory `.../src/mesa/drivers/dri' Making all in swrast make[5]: Entering directory `.../src/mesa/drivers/dri/swrast' ../../../../../lib; /bin/bash: ../../../../../lib: Is a directory All other uses go with lowercase mkdir_p instead of MKDIR_P. Changing the Makefile.am files allows compilation to continue and matches all other places that create a dir.
Does this patch fix it? diff --git a/configure.ac b/configure.ac index 4e5a1d3..656a8d9 100644 --- a/configure.ac +++ b/configure.ac @@ -47,6 +47,7 @@ AC_PROG_CXX AC_CHECK_PROGS([MAKE], [gmake make]) AC_CHECK_PROGS([PYTHON2], [python2 python]) AC_PROG_SED +AC_PROG_MKDIR_P AC_PATH_PROG([MKDEP], [makedepend]) if test "x$MKDEP" = "x"; then ---
That works too.
Thanks for reporting and testing. Fixed.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.