On 7 December 2016 at 20:20, Eric Anholt <[email protected]> wrote: > Emil Velikov <[email protected]> writes: > >> From: Emil Velikov <[email protected]> >> >> Having the "Entering|Leaving directory X" messages it not required nor >> useful in vast majority of the cases. >> >> One can always have them printed by `make -w' or by overriding the >> AM_MAKEFLAGS variable. >> >> Signed-off-by: Emil Velikov <[email protected]> > > I tried this out today and it breaks my go-to-error macro in emacs. I > don't see how an IDE could parse the build output any more to implement > it, either. > > I don't think we should land this.
Have you tried any of the following $ make -w $ make AM_MAKEFLAGS= or even specify a specific subfolder containing Makefile.am $ make -C . $ make -C src I'm not familiar with emacs, let alone the particular macro, or I would have sent you a patch :-) There are other projects in the wild who use -s, so using the above will make your environment more robust. Emil _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
