From patchwork Mon Feb 17 09:42:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fathi Boudra X-Patchwork-Id: 3661601 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A2CF49F38B for ; Mon, 17 Feb 2014 09:42:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D523220160 for ; Mon, 17 Feb 2014 09:42:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E9C752013A for ; Mon, 17 Feb 2014 09:42:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751206AbaBQJmw (ORCPT ); Mon, 17 Feb 2014 04:42:52 -0500 Received: from mail-lb0-f171.google.com ([209.85.217.171]:58701 "EHLO mail-lb0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751154AbaBQJmv (ORCPT ); Mon, 17 Feb 2014 04:42:51 -0500 Received: by mail-lb0-f171.google.com with SMTP id c11so11305272lbj.30 for ; Mon, 17 Feb 2014 01:42:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=rv9B9kA/YtRh1c6/xa6vgh+4h2dTLaRaJYW1NKK/yQc=; b=jAoUv3MdoXnolWqLi9ofOJ4BAfhI/0NiW9njlC3A/lRtWpi3bvoV49J2B7VqtM5h7l B7Yh9iqcdJmV128VYqqCyKhuyg/EYaQDLmhvnKqd32LkNXbA8bMxsA6QaloQ/M6faNF7 o4+bdz/BN0HQ+8oSZ9tGVLMadXeW0eGgMrIxYMkMNw9VdUCh2P+C9C+mSPbZok/m4H2v cYpEaGw1aKitw+9F9P2X9+EBzYQcLsiUttY1CCJefeKumB9nMSEvDko8NyRFZJrZ2gV8 /zmYAX4RkY9iHSAOCbrCqtx+LLZCO+B7fKBZ8t3hQrhuLgY2hF9OxIn9TLt5mVtXPK0v CZYA== X-Gm-Message-State: ALoCoQkO3t0zxGStWAymmreH5IB9uFbsyHtt0Z5jP+bnYC/kUyud64qiNVdJoWJGXr/AIu37QPw1 X-Received: by 10.152.219.97 with SMTP id pn1mr17093357lac.9.1392630170587; Mon, 17 Feb 2014 01:42:50 -0800 (PST) Received: from localhost.localdomain (a91-152-78-194.elisa-laajakaista.fi. [91.152.78.194]) by mx.google.com with ESMTPSA id bl8sm18147460lbb.3.2014.02.17.01.42.49 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 17 Feb 2014 01:42:49 -0800 (PST) From: Fathi Boudra To: linux-kbuild Cc: Michal Marek , Kees Cook , Fathi Boudra Subject: [PATCH] Makefile: fix extra parenthesis typo when CC_STACKPROTECTOR_REGULAR is enabled Date: Mon, 17 Feb 2014 11:42:47 +0200 Message-Id: <1392630167-26317-1-git-send-email-fathi.boudra@linaro.org> X-Mailer: git-send-email 1.8.1.2 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP extra parenthesis typo introduced in commit 19952a9203 is causing the following error when CONFIG_CC_STACKPROTECTOR_REGULAR is enabled: Makefile:608: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler Makefile:608: *** missing separator. Stop. Signed-off-by: Fathi Boudra --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 893d6f0..eeaf3e7 100644 --- a/Makefile +++ b/Makefile @@ -606,7 +606,7 @@ ifdef CONFIG_CC_STACKPROTECTOR_REGULAR stackp-flag := -fstack-protector ifeq ($(call cc-option, $(stackp-flag)),) $(warning Cannot use CONFIG_CC_STACKPROTECTOR: \ - -fstack-protector not supported by compiler)) + -fstack-protector not supported by compiler) endif else ifdef CONFIG_CC_STACKPROTECTOR_STRONG stackp-flag := -fstack-protector-strong