Johan Dahlin wrote:
I always get lots of "Only in dlls/d3d8: basetexture.o, Only in dlls/d3d8: cubetexture.o etc" type lines - How can I get rid of these
You can always filter them out with help of grep:
diff ... | egrep -v "^Only in"
Thanks - Thats what I was after - I knew it should be simple, but I 'expected' a flag on diff! Jason