Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Apr 2002 17:10:29 +0200
From:      Marco Molteni <molter@tin.it>
To:        ports@freebsd.org
Cc:        knu@freebsd.org
Subject:   troubles with portlint and USE_LIBTOOL
Message-ID:  <20020419151029.56238.qmail@cobweb.example.org>

next in thread | raw e-mail | index | archive | help
[Please keep me in the CC since I am not subscribed to -ports]

Hi,

I am checking a new port with portlint (on -stable). It told me:

WARN: /usr/ports/astro/gpsdrive/pkg-plist 10: installing libtool archives, please use USE_LIBTOOL in Makefile if possible

so I did added USE_LIBTOOL to the Makefile, but portlint kept complaining.

Then I had a look at portlint itself and added the following patch, but
it still complains in the same way.

What's wrong?
thanks
marco


--- portlint.orig       Fri Apr 19 16:53:59 2002
+++ portlint    Fri Apr 19 16:54:47 2002
@@ -465,7 +465,7 @@
                                "disallowed.");
                }
 
-               if ($_ =~ /\.la$/) {
+               if ($_ =~ /\.la$/ && $makevar{USE_LIBTOOL} eq '') {
                        &perror("WARN: $file $.: installing libtool archives, ".
                                "please use USE_LIBTOOL in Makefile if possible");
                }


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020419151029.56238.qmail>