if test `uname` = Darwin; then \
make DSONAME="libpdfio.1.dylib" - install; \
else
/bin/sh: -c: line 4: syntax error: unexpected end of file
make: *** [Makefile:121: install-shared] Error 2
Which was caused by the missing \ on line 123
Adding that in fixed it and allowed me to install correctly
Issue before fix
Which was caused by the missing
\
on line 123Adding that in fixed it and allowed me to install correctly