Subject: + 
makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch
 added to -mm tree
To: [email protected],[email protected],[email protected]
From: [email protected]
Date: Tue, 18 Feb 2014 13:09:01 -0800


The patch titled
     Subject: Makefile: fix extra parenthesis typo when 
CC_STACKPROTECTOR_REGULAR is enabled
has been added to the -mm tree.  Its filename is
     
makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch

This patch should soon appear at
    
http://ozlabs.org/~akpm/mmots/broken-out/makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch
and later at
    
http://ozlabs.org/~akpm/mmotm/broken-out/makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Fathi Boudra <[email protected]>
Subject: Makefile: fix extra parenthesis typo when CC_STACKPROTECTOR_REGULAR is 
enabled

An extra parenthesis typo introduced in 19952a9203 ("stackprotector: Unify
the HAVE_CC_STACKPROTECTOR logic between architectures") 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 <[email protected]>
Acked-by: Kees Cook <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---

 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
Makefile~makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled
 Makefile
--- 
a/Makefile~makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled
+++ a/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
_

Patches currently in -mm which might be from [email protected] are

makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch

--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to