Doesn't install tis-interpreter.sh
kroeckx opened this issue · 1 comments
It seems that make install does not install tis-interpreter.sh, and maybe even the whole tis-interpreter directory.
The INSTALL.md suggests to use --prefix=pwd
/tis-interpreter/tis-interpreter, so placing it in the source directory and having the directory name twice. tis-interpreter.sh seems to look in tis-interpreter for it's binaries, so it seems it expects to be installed in pwd
/tis-interpreter/. But I don't want to have it in the current directory, I want install to copy all the needed files to a different directory.
I suggest you support --prefix with something like $dir/tis-interpreter, and then have tis-interpreter.sh in $prefix and copy the other files to $prefix/tis-interpreter/
Using
$ ./configure --prefix=`pwd`/tis-interpreter ...
instead works for me.