From owner-freebsd-ports Fri Apr 19 8:10:52 2002 Delivered-To: freebsd-ports@freebsd.org Received: from www.example.org (dhcp-nic-val-26-130.cisco.com [64.103.26.130]) by hub.freebsd.org (Postfix) with SMTP id 3B79737B41E for ; Fri, 19 Apr 2002 08:10:33 -0700 (PDT) Received: (qmail 56239 invoked by uid 1000); 19 Apr 2002 15:10:29 -0000 Message-ID: <20020419151029.56238.qmail@cobweb.example.org> Date: Fri, 19 Apr 2002 17:10:29 +0200 From: Marco Molteni To: ports@freebsd.org Cc: knu@freebsd.org Subject: troubles with portlint and USE_LIBTOOL X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [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