Skip to content

Commit 697c291

Browse files
committed
Don't require diffutils.
1 parent e621d02 commit 697c291

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

make-genesis-2.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ echo //loading and running GENESIS to create cold-sbcl.core
3535
echo '(load "loader.lisp") (load-sbcl-file "make-genesis-2.lisp")' | $SBCL_XC_HOST
3636

3737
echo //testing for consistency of first and second GENESIS passes
38-
if diff -r src/runtime/genesis output/genesis-2; then
38+
if ! command -v diff > /dev/null ; then
39+
echo //no diffutils, not testing
40+
elif diff -r src/runtime/genesis output/genesis-2; then
3941
echo //header files match between first and second GENESIS -- good
4042
else
4143
echo error: header files do not match between first and second GENESIS

0 commit comments

Comments
 (0)