Bug 66891 - update port: devel/portlint
Summary: update port: devel/portlint
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Joe Marcus Clarke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-05-19 16:40 UTC by Yen-Ming Lee
Modified: 2004-05-30 20:58 UTC (History)
0 users

See Also:


Attachments
portlint.diff (969 bytes, patch)
2004-05-19 16:40 UTC, Yen-Ming Lee
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Yen-Ming Lee 2004-05-19 16:40:20 UTC
portlint complains about 'please use USE_LIBTOOL in Makefile if possible' even if USE_LIBTOOL is set already.
Comment 1 Oliver Eikemeier 2004-05-19 17:13:28 UTC
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
Comment 2 Kirill Ponomarev freebsd_committer freebsd_triage 2004-05-19 19:37:26 UTC
Responsible Changed
From-To: freebsd-ports-bugs->marcus

Over to maintainer.
Comment 3 Joe Marcus Clarke freebsd_committer freebsd_triage 2004-05-30 20:58:38 UTC
State Changed
From-To: open->closed

Committed with a few changes, thanks!