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?