Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 9d6febd3 by Raymond Toy at 2020-03-25T01:12:38+00:00 Fix #82: Replace bc with expr
`expr` is more commonly installed than `bc` so reduce the number of required dependencies and just use `expr`.
- - - - - 911f6abe by Raymond Toy at 2020-03-25T01:12:38+00:00 Merge branch 'rtoy-issue-82-replace-bc' into 'master'
Fix #82: Replace bc with expr
Closes #82
See merge request cmucl/cmucl!50 - - - - -
2 changed files:
- src/general-info/release-21e.md - src/lisp/GNUmakefile
Changes:
===================================== src/general-info/release-21e.md ===================================== @@ -34,6 +34,7 @@ public domain. * ~~#79~~ Autoload ASDF when calling `REQUIRE` the first time. User's no longer have to explicitly load ASDF anymore. * ~~#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"`. * ~~#81~~ Added contribs from Eric Marsden + * ~~#82~~ Replace bc with expr in GNUMakefile * Other changes: * Improvements to the PCL implementation of CLOS: * Changes to building procedure:
===================================== src/lisp/GNUmakefile ===================================== @@ -47,7 +47,7 @@ lisp.nm: lisp lisp.a mv ,lisp.nm lisp.nm
version.o : version.c version - echo '1 + ' `cat version` | bc > ,version + expr 1 + `cat version` > ,version mv ,version version $(CC) ${CFLAGS} $(CPPFLAGS) -DVERSION=`cat version` -c $<
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/12b02161853b316d79bb213...