Arduino on Linux

gabor: the error seems to be appearing in a command to build a file you don't really need. You can modify the Makefile to not build it at all. Change line 127 from:

build: elf hex eep

to:

build: elf hex

And change line 136 from:

upload: $(TARGET).hex $(TARGET).eep

to:

upload: $(TARGET).hex

This will be fixed soon.