linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MIPS: zboot: fix build failure
@ 2017-01-04 18:04 Sudip Mukherjee
  2017-01-12 23:30 ` Sudip Mukherjee
  0 siblings, 1 reply; 2+ messages in thread
From: Sudip Mukherjee @ 2017-01-04 18:04 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-kernel, linux-mips, Sudip Mukherjee

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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] MIPS: zboot: fix build failure
  2017-01-04 18:04 [PATCH] MIPS: zboot: fix build failure Sudip Mukherjee
@ 2017-01-12 23:30 ` Sudip Mukherjee
  0 siblings, 0 replies; 2+ messages in thread
From: Sudip Mukherjee @ 2017-01-12 23:30 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-kernel, linux-mips

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-01-12 23:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-04 18:04 [PATCH] MIPS: zboot: fix build failure Sudip Mukherjee
2017-01-12 23:30 ` Sudip Mukherjee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).