portlint complains about 'please use USE_LIBTOOL in Makefile if possible' even if USE_LIBTOOL is set already.
Yen-Ming Lee wrote: >>Description: > > portlint complains about 'please use USE_LIBTOOL in Makefile if possible' even if USE_LIBTOOL is set already. > >>Fix: > [...] > - if ($_ =~ /\.la$/) { > + if ($_ =~ /\.la$/ && $makevar{USE_LIBTOOL} eq '') { > &perror("WARN: $file [$.]: installing libtool archives, ". > "please use USE_LIBTOOL in Makefile if possible"); I guess the purpose of this check is that the FreeBSD version of libtool is used, which doesn't install .la files. If you have USE_LIBTOOL and still install .la files, you still use the libtool included with your port. -Oliver
Responsible Changed From-To: freebsd-ports-bugs->marcus Over to maintainer.
State Changed From-To: open->closed Committed with a few changes, thanks!