mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-09 23:16:41 -04:00
Don't require diffutils.
This commit is contained in:
parent
e621d02733
commit
697c2911f8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue