Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • src/general-info/release-21e.md
    ... ... @@ -34,6 +34,7 @@ public domain.
    34 34
         * ~~#79~~ Autoload ASDF when calling `REQUIRE` the first time.  User's no longer have to explicitly load ASDF anymore.
    
    35 35
         * ~~#80~~ Use ASDF to load contribs.  cmu-contribs still exists but does nothing.  The contrib names are the same, except it's best to use a keyword instead of a string.  So, `:contrib-demos` instead of `"contrib-demos"`.
    
    36 36
         * ~~#81~~ Added contribs from Eric Marsden
    
    37
    +    * ~~#82~~ Replace bc with expr in GNUMakefile
    
    37 38
       * Other changes:
    
    38 39
       * Improvements to the PCL implementation of CLOS:
    
    39 40
       * Changes to building procedure:
    

  • src/lisp/GNUmakefile
    ... ... @@ -47,7 +47,7 @@ lisp.nm: lisp lisp.a
    47 47
     	mv ,lisp.nm lisp.nm
    
    48 48
     
    
    49 49
     version.o : version.c version
    
    50
    -	echo '1 + ' `cat version` | bc > ,version
    
    50
    +	expr 1 + `cat version` > ,version
    
    51 51
     	mv ,version version
    
    52 52
     	$(CC) ${CFLAGS} $(CPPFLAGS) -DVERSION=`cat version` -c $<
    
    53 53