[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20071020044224.DD48423A6FC@adsl-69-226-248-13.dsl.pltn13.pacbell.net>
Date: Fri, 19 Oct 2007 21:42:24 -0700
From: David Brownell <david-b@...bell.net>
To: linux-kernel@...r.kernel.org
Subject: [patch 2.6.23-git] toplevel Makefile/depmod bugfix
This removes a BASH syntax error (seen building on Ubuntu Feisty).
Signed-off-by: David Brownell <dbrownell@...rs.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); \
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists