public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch 2.6.23-git] toplevel Makefile/depmod bugfix
@ 2007-10-20  4:42 David Brownell
  2007-10-20  5:36 ` Sam Ravnborg
  0 siblings, 1 reply; 5+ messages in thread
From: David Brownell @ 2007-10-20  4:42 UTC (permalink / raw)
  To: linux-kernel

This removes a BASH syntax error (seen building on Ubuntu Feisty).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>

--- g26.orig/Makefile	2007-10-19 21:29:43.000000000 -0700
+++ g26/Makefile	2007-10-19 18:35:32.000000000 -0700
@@ -1507,7 +1507,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm
 # 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);                                               \

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-10-20 13:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-20  4:42 [patch 2.6.23-git] toplevel Makefile/depmod bugfix David Brownell
2007-10-20  5:36 ` Sam Ravnborg
2007-10-20  5:44   ` Roland Dreier
2007-10-20  5:52   ` David Brownell
2007-10-20 13:06     ` Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox