Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • bin/build.sh
    ... ... @@ -149,7 +149,7 @@ buildit ()
    149 149
     	then
    
    150 150
     	    $BUILDWORLD $TARGET $OLDLISP $BOOT || { echo "Failed: $BUILDWORLD"; exit 1; }
    
    151 151
     	fi
    
    152
    -	$TOOLDIR/load-world.sh $TARGET "$VERSION" || { echo "Failed: $TOOLDIR/load-world.sh"; exit 1; }
    
    152
    +	$TOOLDIR/load-world.sh $TARGET || { echo "Failed: $TOOLDIR/load-world.sh"; exit 1; }
    
    153 153
     
    
    154 154
     	$TARGET/lisp/lisp -lib $TARGET/lisp -batch -noinit -nositeinit < /dev/null || { echo "Failed: $TARGET/lisp/lisp -batch -noinit"; exit 1; }
    
    155 155
     
    

  • bin/cross-build-world.sh
    ... ... @@ -144,5 +144,5 @@ fi
    144 144
     
    
    145 145
     if [ "$LOAD_KERNEL" = "yes" ]; then
    
    146 146
         echo Load kernel.core
    
    147
    -    bin/load-world.sh -p $TARGET cross-compiled
    
    147
    +    bin/load-world.sh -p $TARGET
    
    148 148
     fi