diff --git a/Makefile.ship b/Makefile.ship index 9a824ff..2635c6f 100644 --- a/Makefile.ship +++ b/Makefile.ship @@ -2180,7 +2180,7 @@ all: check_include ${BLD_TYPE} CHANGES check_include: $(Q) if ! echo '#include ' | ${CC} -E - >/dev/null 2>&1; then \ - echo "ERROR: The critical include file is missing." 1>&2; \ + echo "ERROR: Missing critical include file." 1>&2; \ echo "Without critical include files, we cannot compile." 1>&2; \ echo "Perhaps your system isn't setup to compile C source?" 1>&2; \ echo 1>&2; \ @@ -2470,10 +2470,12 @@ endian_calc.h: endian${EXT} ${MAKE_FILE} if echo '#include ' | ${CC} -E - >/dev/null 2>&1; then \ echo '#include ' >> endian_calc.h; \ echo '#define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \ - elif echo '#include ' | ${CC} -E - >/dev/null 2>&1; then \ + elif echo '#include ' | \ + ${CC} -E - >/dev/null 2>&1; then \ echo '#include ' >> endian_calc.h; \ echo '#define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \ - elif echo '#include ' | ${CC} -E- >/dev/null 2>&1; then \ + elif echo '#include ' | \ + ${CC} -E- >/dev/null 2>&1; then \ echo '#include ' >> endian_calc.h; \ echo '#define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \ else \