summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Brownell <david-b@pacbell.net>2007-10-19 21:42:24 -0700
committerSam Ravnborg <sam@neptun.(none)>2007-10-20 20:10:19 +0200
commit0b463ff139d8f911f90c1d33a53aba094ed45907 (patch)
tree66ab6ba8ac922a8d52649f25b5a6011ae6f0833c /Makefile
parente8b8c977734193adedf2b0f607d6252c78e86394 (diff)
downloadlinux-0b463ff139d8f911f90c1d33a53aba094ed45907.tar.gz
kbuild: fix toplevel Makefile/depmod
This removes a syntax error (seen building on Ubuntu Feisty).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f9c264e243a2..50bb50defe18 100644
--- a/Makefile
+++ b/Makefile
@@ -1505,7 +1505,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files))
 # and we build for the host arch
 quiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
       cmd_depmod = \
-	if [ -r System.map -a -x $(DEPMOD) -a "$(SUBARCH)" == "$(ARCH)" ]; then \
+	if [ -r System.map -a -x $(DEPMOD) -a "$(SUBARCH)" = "$(ARCH)" ]; then \
 		$(DEPMOD) -ae -F System.map                                     \
 		$(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) -r)   \
 		$(KERNELRELEASE);                                               \