From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966920AbdADSFK (ORCPT ); Wed, 4 Jan 2017 13:05:10 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:33037 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966845AbdADSFF (ORCPT ); Wed, 4 Jan 2017 13:05:05 -0500 From: Sudip Mukherjee To: Ralf Baechle Cc: linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, Sudip Mukherjee Subject: [PATCH] MIPS: zboot: fix build failure Date: Wed, 4 Jan 2017 18:04:58 +0000 Message-Id: <1483553098-5013-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- 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