Don't require diffutils.

This commit is contained in:
Stas Boukarev 2019-04-14 16:12:34 +03:00
parent e621d02733
commit 697c2911f8

View file

@ -35,7 +35,9 @@ echo //loading and running GENESIS to create cold-sbcl.core
echo '(load "loader.lisp") (load-sbcl-file "make-genesis-2.lisp")' | $SBCL_XC_HOST
echo //testing for consistency of first and second GENESIS passes
if diff -r src/runtime/genesis output/genesis-2; then
if ! command -v diff > /dev/null ; then
echo //no diffutils, not testing
elif diff -r src/runtime/genesis output/genesis-2; then
echo //header files match between first and second GENESIS -- good
else
echo error: header files do not match between first and second GENESIS