Re: [PATCH v3] bootstrap: Allow perl modules in $buildreq

2014-12-08 Thread Eric Blake
On 12/08/2014 05:19 AM, Martin Kletzander wrote: > With this patch it is possible to put e.g. "perl::XML:XPath -" in > $buildreq in bootstrap.conf which will cause a check for perl module > XML::XPath using: > > perl -m"XML::XPath" -e 'exit 0' >/dev/null 2>&1 > > If this fails due to any other

Re: [PATCH v3] bootstrap: Allow perl modules in $buildreq

2014-12-08 Thread Pádraig Brady
LGTM. Pushed. thanks, Pádraig

[PATCH v3] bootstrap: Allow perl modules in $buildreq

2014-12-08 Thread Martin Kletzander
With this patch it is possible to put e.g. "perl::XML:XPath -" in $buildreq in bootstrap.conf which will cause a check for perl module XML::XPath using: perl -m"XML::XPath" -e 'exit 0' >/dev/null 2>&1 If this fails due to any other error then XML::XPath missing, it is left on the user to fix up