I'm trying to compile git on an HP-UX system. and when i run make all, I get a syntax error on line 252. if i go to line 252 of the makefile, i see
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
I've tried a couple ways to correct this error, removing the line and changing it to a hardcoded value, but even if i comment the line, remove the line, change it, or anything else, i still get a syntax error on line 252. has anyone successfully compiled git on hp-ux without using the gcc compiler?
thank you!