File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2180,7 +2180,7 @@ all: check_include ${BLD_TYPE} CHANGES
2180
2180
2181
2181
check_include :
2182
2182
$(Q ) if ! echo ' #include <stdio.h>' | ${CC} -E - > /dev/null 2>&1 ; then \
2183
- echo " ERROR: The critical <stdio.h> include file is missing ." 1>&2 ; \
2183
+ echo " ERROR: Missing critical <stdio.h> include file." 1>&2 ; \
2184
2184
echo " Without critical include files, we cannot compile." 1>&2 ; \
2185
2185
echo " Perhaps your system isn't setup to compile C source?" 1>&2 ; \
2186
2186
echo 1>&2 ; \
@@ -2470,10 +2470,12 @@ endian_calc.h: endian${EXT} ${MAKE_FILE}
2470
2470
if echo ' #include <endian.h>' | ${CC} -E - > /dev/null 2>&1 ; then \
2471
2471
echo ' #include <endian.h>' >> endian_calc.h; \
2472
2472
echo ' #define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \
2473
- elif echo ' #include <machine/endian.h>' | ${CC} -E - > /dev/null 2>&1 ; then \
2473
+ elif echo ' #include <machine/endian.h>' | \
2474
+ ${CC} -E - > /dev/null 2>&1 ; then \
2474
2475
echo ' #include <machine/endian.h>' >> endian_calc.h; \
2475
2476
echo ' #define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \
2476
- elif echo ' #include <sys/endian.h>' | ${CC} -E- > /dev/null 2>&1 ; then \
2477
+ elif echo ' #include <sys/endian.h>' | \
2478
+ ${CC} -E- > /dev/null 2>&1 ; then \
2477
2479
echo ' #include <sys/endian.h>' >> endian_calc.h; \
2478
2480
echo ' #define CALC_BYTE_ORDER BYTE_ORDER' >> endian_calc.h; \
2479
2481
else \
You can’t perform that action at this time.
0 commit comments