From: Paolo 'Blaisorblade' Giarrusso Date: Sun, 9 Oct 2005 19:37:05 +0000 (+0200) Subject: [PATCH] Uml: hide commands when not being verbose X-Git-Tag: v2.6.14-rc4~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cd10daa0c7fc1410e1c0d685cbc9622c769eb16;p=platform%2Fkernel%2Flinux-exynos.git [PATCH] Uml: hide commands when not being verbose Add a missing $(Q) to a "ln" invocation. Signed-off-by: Paolo 'Blaisorblade' Giarrusso Signed-off-by: Linus Torvalds --- diff --git a/arch/um/Makefile b/arch/um/Makefile index 7af37e3..e1ffad2 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -152,7 +152,7 @@ archclean: $(SYMLINK_HEADERS): @echo ' SYMLINK $@' ifneq ($(KBUILD_SRC),) - ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ + $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ else $(Q)cd $(TOPDIR)/$(dir $@) ; \ ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)