[Mesa-dev] [PATCH 02/20] automake: silence folder creation

Erik Faye-Lund kusmabite at gmail.com
Wed Mar 5 02:11:58 PST 2014


On Tue, Mar 4, 2014 at 10:12 PM, Emil Velikov <emil.l.velikov at gmail.com> wrote:
> There is little gain in printing whenever a folder is created.
>
> Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
> ---
>  src/gallium/auxiliary/Makefile.am | 8 ++++----
>  src/glsl/Makefile.am              | 4 ++--
>  src/mesa/Makefile.am              | 4 ++--
>  src/mesa/drivers/dri/Makefile.am  | 2 +-
>  4 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/src/gallium/auxiliary/Makefile.am b/src/gallium/auxiliary/Makefile.am
> index 2d2d8d4..afeeef9 100644
> --- a/src/gallium/auxiliary/Makefile.am
> +++ b/src/gallium/auxiliary/Makefile.am
> @@ -32,17 +32,17 @@ libgallium_la_SOURCES += \
>  endif
>
>  indices/u_indices_gen.c: $(srcdir)/indices/u_indices_gen.py
> -       $(MKDIR_P) indices
> +       @$(MKDIR_P) indices
>         $(AM_V_GEN) $(PYTHON2) $< > $@

I tend to prefer $(AM_V_at) in cases like this, because it makes it
show up again in verbose builds.


More information about the mesa-dev mailing list