From 1cdb5172d8ae1b9cd358588690e68d75fb5effd4 Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Fri, 19 Oct 2018 19:41:58 -0700 Subject: [PATCH] Fix Makefile lines that picky complains about --- Makefile.ship | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 \