Interlisp / medley

The main repo for the Medley Interlisp project. Wiki, Issues are here. Other repositories include maiko (the VM implementation) and Interlisp.github.io (web site sources)
https://Interlisp.org
MIT License
376 stars 19 forks source link

The `mkvdate` script is called by a hard coded path #921

Closed kuriboshi closed 2 years ago

kuriboshi commented 2 years ago

Describe the bug Building maiko in a directory which isn't located in the source tree fails because the mkvdate script is called assuming the build directory is one level below the top level.

To Reproduce Steps to reproduce the behavior:

  1. mkdir -p build/debug
  2. cmake -B build/debug
  3. cmake --build build/debug results in the error: /bin/sh: ../bin/mkvdate: No such file or directory

Expected behavior The build should succeed. Created Interlisp/maiko#441 to fix this problem.

Screenshots N/A

Context (please complete the following information):

Additional context

kuriboshi commented 2 years ago

Fixed by Interlisp/maiko#441