From: Rasmus Villemoes Date: Wed, 10 Sep 2014 16:05:39 +0000 (+0200) Subject: x86/kbuild: Eliminate duplicate command line options X-Git-Tag: fixes-against-v3.18-rc2~94^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c630089442c2e3482855c0849fea53abded81e2;p=pandora-kernel.git x86/kbuild: Eliminate duplicate command line options The options -mno-mmx and -mno-sse are unconditionally added to KBUILD_CFLAGS in both branches of an ifeq and through a $(cc-option) further down. We can safely remove the first instances. In fact, since the -mno-mmx and -mno-sse options were introduced simultaneous with the other two options in the $(cc-option) [according to http://www.gnu.org/software/gcc/gcc-3.1/changes.html], and since the former were unconditionally used, one can deduce that only gcc versions knowing about all four are supported. So also eliminate the $(cc-option) wrap. Signed-off-by: Rasmus Villemoes Acked-by: Peter Foley Link: http://lkml.kernel.org/r/1410365139-24440-1-git-send-email-linux@rasmusvillemoes.dk Signed-off-by: Ingo Molnar --- Reading git-diff-tree failed