diff options
| author | 2019-11-08 18:43:53 -0600 | |
|---|---|---|
| committer | 2019-11-08 18:43:53 -0600 | |
| commit | c12eaa926ae0dc7db0b7002d575fc801bc386fd7 (patch) | |
| tree | b8e6c3a09a944b1e07e4ad74eea9e6eef53a2f3d | |
| parent | Fix meson.build typo. (diff) | |
Make sure $prefix/lib/janet is created
After we removed cook.janet, jpm didn't work well out of the box
with a meson install.
| -rw-r--r-- | meson.build | 1 | ||||
| -rw-r--r-- | tools/.keep | 0 |
2 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index cc409e0c..16386e96 100644 --- a/meson.build +++ b/meson.build @@ -256,3 +256,4 @@ janet_binscripts = [ 'auxbin/jpm' ] install_data(sources : janet_binscripts, install_dir : 'bin') +install_data(sources : ['tools/.keep'], install_dir : 'lib/janet') diff --git a/tools/.keep b/tools/.keep new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tools/.keep |
