linkparser

Automatically correct Lingua::LinkParser include lib path

对着背影说爱祢 提交于 2020-01-13 13:45:25
问题 I'm building a script that will run on an EC2 instance that will automatically install our required packages and modules. I'm having an issue with Perl module Lingua::LinkParser . During compile it complains LinkParser.xs:5:27: error: link-includes.h: No such file or directory On Ubuntu link-includes.h is provided by package link-grammar and is installed in /usr/include/link-grammar/. However Lingua::LinkParser's Makefile.PL is hard-coded(?) to look in /usr/local/include/link-grammar/. Is

Automatically correct Lingua::LinkParser include lib path

雨燕双飞 提交于 2019-12-05 19:27:38
I'm building a script that will run on an EC2 instance that will automatically install our required packages and modules. I'm having an issue with Perl module Lingua::LinkParser . During compile it complains LinkParser.xs:5:27: error: link-includes.h: No such file or directory On Ubuntu link-includes.h is provided by package link-grammar and is installed in /usr/include/link-grammar/. However Lingua::LinkParser's Makefile.PL is hard-coded(?) to look in /usr/local/include/link-grammar/. Is there simple-ish way to resolve this issue? daxim Distroprefs Best practice for using slightly modifying