patchup.red 600 B

1234567891011121314151617181920212223
  1. % This script ensures that REDUCE has the most recent set of
  2. % patches applied. It cab be used in two manners
  3. % (a) Have the REDUCE binary directory selected as current, and go just
  4. % r37 patchup.red
  5. % This relies on being located within the REDUCE source tree.
  6. %
  7. % (b) Being in some other directory where you often use REDUCE and
  8. % issuing the command
  9. % r37 (wherever)/patchup.red -D@reduce="path-to-reduce-tree"
  10. % This will put the compiled patches in your local directory.
  11. lisp;
  12. load!-module 'remake;
  13. ensure_patches_are_up_to_date();
  14. end;