Commit 450c6076a79ebb053cf53e43f948de5ab077c573

Authored by Jesper Juhl
Committed by Jiri Kosina
1 parent a03abdcb8e

Makefile: improve line wrapping

Break a few lines that go way over the usual 80 column limit that we prefer.
Also adjust the placement of a few line continuations.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 1 changed file with 7 additions and 5 deletions Side-by-side Diff

... ... @@ -400,8 +400,10 @@
400 400  
401 401 # Files to ignore in find ... statements
402 402  
403   -RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
404   -export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git
  403 +RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
  404 + -o -name .pc -o -name .hg -o -name .git \) -prune -o
  405 +export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
  406 + --exclude CVS --exclude .pc --exclude .hg --exclude .git
405 407  
406 408 # ===========================================================================
407 409 # Rules shared between *config targets and build targets
... ... @@ -966,7 +968,7 @@
966 968 ifneq ($(KBUILD_SRC),)
967 969 @$(kecho) ' Using $(srctree) as source for kernel'
968 970 $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
969   - echo " $(srctree) is not clean, please run 'make mrproper'";\
  971 + echo " $(srctree) is not clean, please run 'make mrproper'"; \
970 972 echo " in the '$(srctree)' directory.";\
971 973 /bin/false; \
972 974 fi;
... ... @@ -1003,8 +1005,8 @@
1003 1005 endef
1004 1006  
1005 1007 define filechk_version.h
1006   - (echo \#define LINUX_VERSION_CODE $(shell \
1007   - expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
  1008 + (echo \#define LINUX_VERSION_CODE $(shell \
  1009 + expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
1008 1010 echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
1009 1011 endef
1010 1012