kbuild: Fix checking of scm-identifier variable

I'm looking Makefile in the -mm branch (dated 2010-04-28-16-53) and
seeing what looks like a bug in the checking of scm-identifier. The
"ifneq ($scm-identifier)" seems to always execute "ifeq
($(LOCALVERSION,)) ...". This patch fixes the checking of
scm-identifier.

Signed-off-by: Greg Thelen <gthelen@google.com>
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

authored by Greg Thelen and committed by Michal Marek fb994ecc 06f9a55c

+1 -1
+1 -1
Makefile
··· 943 943 ifdef CONFIG_LOCALVERSION_AUTO 944 944 localver-extra = $(scm-identifier) 945 945 else 946 - ifneq ($scm-identifier,) 946 + ifneq ($(scm-identifier),) 947 947 ifeq ($(LOCALVERSION),) 948 948 localver-extra = + 949 949 endif