I'm assuming some bash-isms crept into the tree, as I got these:
LD net/built-in.o
/bin/sh: +@: not found
make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
CHK include/linux/compile.h
dnsdomainname: Unknown host
UPD include/linux/compile.h
CC init/version.o
LD init/built-in.o
LD vmlinux
SYSMAP System.map
(Note, I was building with -j3)
As the system I was using is a bit... er.... slow, I'd prefer not to kick
off another build with V=1 :-)
Not to mention, egrep -r is kinda painful over NFS on a slow link.
Pulled via git (after fixing git scripts to use bash instead of /bin/sh):
$ cat .git/HEAD
5f5024130287a9467a41b9f94ec170958ae45cbd
-- DN
Daniel
On Fri, Sep 09, 2005 at 12:21:13PM -0700, carbonated beverage wrote:
> I'm assuming some bash-isms crept into the tree, as I got these:
>
> LD net/built-in.o
> /bin/sh: +@: not found
> make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
Using the ':' buildin in several places is such a speedup for normal
usage that I do not plan to replace it with anything else.
Sam
On Fri, Sep 09, 2005 at 10:59:46PM +0200, Sam Ravnborg wrote:
> Using the ':' buildin in several places is such a speedup for normal
> usage that I do not plan to replace it with anything else.
So what about adding SHELL=bash at the top-level makefile?
-- DN
Daniel