We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e621d02 commit 697c291Copy full SHA for 697c291
make-genesis-2.sh
@@ -35,7 +35,9 @@ echo //loading and running GENESIS to create cold-sbcl.core
35
echo '(load "loader.lisp") (load-sbcl-file "make-genesis-2.lisp")' | $SBCL_XC_HOST
36
37
echo //testing for consistency of first and second GENESIS passes
38
-if diff -r src/runtime/genesis output/genesis-2; then
+if ! command -v diff > /dev/null ; then
39
+ echo //no diffutils, not testing
40
+elif diff -r src/runtime/genesis output/genesis-2; then
41
echo //header files match between first and second GENESIS -- good
42
else
43
echo error: header files do not match between first and second GENESIS
0 commit comments