Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1551047 > unrolled thread

[PATCH] MIPS: zboot: fix build failure

Started bySudip Mukherjee <sudipm.mukherjee@gmail.com>
First post2017-01-04 19:10 +0100
Last post2017-01-13 00:40 +0100
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] MIPS: zboot: fix build failure Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2017-01-04 19:10 +0100
    Re: [PATCH] MIPS: zboot: fix build failure Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2017-01-13 00:40 +0100

#1551047 — [PATCH] MIPS: zboot: fix build failure

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2017-01-04 19:10 +0100
Subject[PATCH] MIPS: zboot: fix build failure
Message-ID<sVYaB-8bd-1@gated-at.bofh.it>
The build of mips ar7_defconfig was failing with the error:
arch/mips/boot/compressed/Makefile:21:
  *** insufficient number of arguments (1) to function `filter-out'.
	Stop.

A ',' was missing while adding filter-out.

Fixes: afca036d463c ("MIPS: zboot: Consolidate compiler flag filtering.")
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
---

build log is at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/188737021

 arch/mips/boot/compressed/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile
index 608389a..c675eec 100644
--- a/arch/mips/boot/compressed/Makefile
+++ b/arch/mips/boot/compressed/Makefile
@@ -18,7 +18,7 @@ include $(srctree)/arch/mips/Kbuild.platforms
 BOOT_HEAP_SIZE := 0x400000
 
 # Disable Function Tracer
-KBUILD_CFLAGS := $(filter-out -pg $(KBUILD_CFLAGS))
+KBUILD_CFLAGS := $(filter-out -pg, $(KBUILD_CFLAGS))
 
 KBUILD_CFLAGS := $(filter-out -fstack-protector, $(KBUILD_CFLAGS))
 
-- 
1.9.1

[toc] | [next] | [standalone]


#1557917

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2017-01-13 00:40 +0100
Message-ID<sYX8l-1Li-1@gated-at.bofh.it>
In reply to#1551047
On Wednesday 04 January 2017 06:04 PM, Sudip Mukherjee wrote:
> The build of mips ar7_defconfig was failing with the error:
> arch/mips/boot/compressed/Makefile:21:
>    *** insufficient number of arguments (1) to function `filter-out'.
> 	Stop.
>
> A ',' was missing while adding filter-out.
>
> Fixes: afca036d463c ("MIPS: zboot: Consolidate compiler flag filtering.")
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> ---

A gentle ping.
Many of the mips builds are failing daily.

regards
sudip

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web