Hi Joshua, (We met at Palo Alto in a Debian dinner on a chinese restaurant, remember? :)) Unfortunately this patch doenst apply cleanly [marcelo@logos linux-2.4]$ fp /tmp/gnu bk import -tpatch -r -CR -yscripts: Support output of new ld /tmp/patch4572 . Patching... Patch failed. **** patch log follows **** Patching file scripts/ver_linux 1 out of 1 hunk FAILED -- saving rejects to file scripts/ver_linux.rej Its easy enough to be applied by hand but I prefer if you generate a clean patch instead reject file attached On Fri, Sep 17, 2004 at 11:57:33PM -0700, Joshua Kwan wrote: > Hello, > > This is one in a handful of small patches that I'll be sending along in > the near future. This patch allows scripts/ver_linux to find out the ld > version for versions of ld that have different output on 'ld -v' (new > ones have "GNU" at the beginning.) > > Marcelo, please apply. > > Signed-off-by: Joshua Kwan > > -- > Joshua Kwan > > --- a/scripts/ver_linux 2004-09-05 01:31:23.000000000 -0700 > +++ b/scripts/ver_linux 2004-09-05 01:31:47.000000000 -0700 > @@ -22,7 +22,8 @@ > '/GNU Make/{print "Gnu make ",$NF}' > > ld -v 2>&1 | awk -F\) '{print $1}' | awk \ > - '/BFD/{print "binutils ",$NF}' > + '/BFD/{print "binutils ",$NF} > + /^GNU/{print "binutils ",$4}' > > fdformat --version | awk -F\- '{print "util-linux ", $NF}' >