Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2014 13:09:15 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r365554 - head/Mk
Message-ID:  <201408211309.s7LD9F3X062313@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Thu Aug 21 13:09:15 2014
New Revision: 365554
URL: http://svnweb.freebsd.org/changeset/ports/365554
QAT: https://qat.redports.org/buildarchive/r365554/

Log:
  Some ports create their pkg-plist from post-install.  USES=libtool removes
  .la files after that so pkg-plist ends up containing .la files that don't
  exist when the package is created.
  
  Move the patch-lafiles target in front of post-stage such that these ports
  can create their pkg-plist in post-stage.
  
  PR:		192753
  Approved by:	portmgr (antoine)

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Thu Aug 21 12:58:36 2014	(r365553)
+++ head/Mk/bsd.port.mk	Thu Aug 21 13:09:15 2014	(r365554)
@@ -6418,7 +6418,7 @@ _STAGE_SUSEQ=	create-users-groups do-ins
 				kmod-post-install shared-mime-post-install \
 				webplugin-post-install post-install post-install-script \
 				desktop-file-post-install \
-				move-uniquefiles post-stage compress-man patch-lafiles \
+				move-uniquefiles patch-lafiles post-stage compress-man \
 				install-rc-script install-ldconfig-file install-license \
 				install-desktop-entries add-plist-info add-plist-docs \
 				add-plist-examples add-plist-data add-plist-post \
@@ -6431,7 +6431,7 @@ _STAGE_SEQ+=	create-users-groups do-inst
 				kmod-post-install shared-mime-post-install \
 				webplugin-post-install post-install post-install-script \
 				desktop-file-post-install \
-				move-uniquefiles post-stage compress-man patch-lafiles \
+				move-uniquefiles patch-lafiles post-stage compress-man \
 				install-rc-script install-ldconfig-file install-license \
 				install-desktop-entries add-plist-info add-plist-docs \
 				add-plist-examples add-plist-data add-plist-post \



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