aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2003-06-05 01:25:57 +0200
committerSam Ravnborg <sam@mars.ravnborg.org>2003-06-05 01:25:57 +0200
commit458435acda445604cb0ce14138b794f477408f7b (patch)
tree7856f47023ded3b66f8869a7e47f06cadcc788b0 /Makefile
parentfbf47415732b00ff5578d55c6be779a109a01e1f (diff)
downloadhistory-458435acda445604cb0ce14138b794f477408f7b.tar.gz
kbuild: Silence output with make 3.80
In the top-level makefile escaped two lines to avoid launching a second subshell. This make the build a bit less verbose with make V=0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5932e5ffe0c8f..f7f2aba0f513e 100644
--- a/Makefile
+++ b/Makefile
@@ -378,7 +378,7 @@ define rule_vmlinux__
endef
define rule_vmlinux
- $(rule_vmlinux__)
+ $(rule_vmlinux__); \
$(NM) $@ | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map
endef
@@ -512,7 +512,7 @@ define filechk_version.h
if expr length "$(KERNELRELEASE)" \> $(uts_len) >/dev/null ; then \
echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
exit 1; \
- fi;
+ fi; \
(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \