From owner-svn-doc-head@FreeBSD.ORG Fri May 23 20:29:36 2014 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80653383; Fri, 23 May 2014 20:29:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D51D235E; Fri, 23 May 2014 20:29:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4NKTaG8035421; Fri, 23 May 2014 20:29:36 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4NKTaWU035420; Fri, 23 May 2014 20:29:36 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201405232029.s4NKTaWU035420@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 23 May 2014 20:29:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44926 - head/en_US.ISO8859-1/books/porters-handbook/makefiles X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 May 2014 20:29:36 -0000 Author: mat (ports committer) Date: Fri May 23 20:29:35 2014 New Revision: 44926 URL: http://svnweb.freebsd.org/changeset/doc/44926 Log: Add a note hinting porters not to use INSTALL_LIB to install static libraries. PR: docs/190146 Submitted by: Natacha Porté Sponsored by: Absolight Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri May 23 18:32:38 2014 (r44925) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri May 23 20:29:35 2014 (r44926) @@ -4361,8 +4361,8 @@ PORTVERSION= 1.0 - INSTALL_LIB is a command to - install shared libraries. + INSTALL_LIB is a command to install + shared libraries (but not static libraries). @@ -4375,7 +4375,7 @@ PORTVERSION= 1.0 INSTALL_DATA is a command to - install sharable data. + install sharable data, including static libraries. @@ -4387,6 +4387,13 @@ PORTVERSION= 1.0 These are basically the install command with all the appropriate flags. + + + Do not use INSTALL_LIB to install + static libraries, because stripping them render them + useless. Use INSTALL_DATA + instead. +