> $ mv Makefile Makefile.cc > $ cp -p Makefile.gcc Makefile > $ make > > I got an error message: > > Make: fatal error in reader: Makefile, line 107: Unexpected end of line > seen > > The make program is Sun's (/usr/ccs/bin/make) not GNU's. > > I looked at line 107 but I can't figure out what's wrong. Can anyone > help me? Thanks. >
The error is actually due to line 104 having 8 spaces at the start of the line instead of the TAB character. Various make's are very picky about that. Ian D
