On 13/11/2016 22:33, Kornel Benko wrote:
You are right. Through the script we try to run "lyxwrap2.3", and this command
does not exist in my case.
I could not find lyxwrap.cpp, therefore I can not create this command.
slipped out of the commits, sorry about that! Now it's in my repo, or just see
attachment :-).
T.
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
if (argc < 2)
return -1;
execvp(argv[1], argv + 1);
fprintf(stderr, "Couldn't run %s: %s!\n", argv[1], strerror(errno));
}