Messages in this thread Patch in this message |  | | Subject | Linux 2.2.18pre14 fix | Date | Sun, 1 Oct 2000 14:36:45 +0100 (BST) | From | Alan Cox <> |
| |
Either do
chmod 755 scripts/kwhich
(I forgot patch loses executable bits)
or
--- Makefile~ Sun Oct 1 10:39:48 2000 +++ Makefile Sun Oct 1 13:35:06 2000 @@ -29,7 +29,7 @@ # otherwise 'cc' # CC =$(shell if [ -n "$(CROSS_COMPILE)" ]; then echo $(CROSS_COMPILE)gcc; else \ - scripts/kwhich gcc272 2>/dev/null || scripts/kwhich kgcc 2>/dev/null || echo cc; fi) \ + $(CONFIG_SHELL) scripts/kwhich gcc272 2>/dev/null || $(CONFIG_SHELL) scripts/kwhich kgcc 2>/dev/null || echo cc; fi) \ -D__KERNEL__ -I$(HPATH) CPP =$(CC) -E AR =$(CROSS_COMPILE)ar - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |