svn commit: r460578 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Thu Feb 1 08:31:06 UTC 2018


Author: mat
Date: Thu Feb  1 08:31:05 2018
New Revision: 460578
URL: https://svnweb.freebsd.org/changeset/ports/460578

Log:
  Don't run create-manifest as root.
  
  PR:		224992
  Submitted by:	tobik
  Reported by:	yuri
  Exp-run by:	antoine
  Sponsored by:	Absolight
  Differential Revision:	https://reviews.freebsd.org/D13798

Modified:
  head/Mk/bsd.port.mk   (contents, props changed)

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Thu Feb  1 08:17:51 2018	(r460577)
+++ head/Mk/bsd.port.mk	Thu Feb  1 08:31:05 2018	(r460578)
@@ -4675,7 +4675,7 @@ flavors-package-names: .PHONY
 STAGE_ARGS=		-i ${STAGEDIR}
 
 .if !defined(NO_PKG_REGISTER)
-fake-pkg: create-manifest
+fake-pkg:
 .if defined(INSTALLS_DEPENDS)
 	@${ECHO_MSG} "===>   Registering installation for ${PKGNAME} as automatic"
 .else
@@ -5262,8 +5262,9 @@ _TEST_SEQ=		100:test-message 150:test-depends 300:pre-
 				${_OPTIONS_test} ${_USES_test}
 _INSTALL_DEP=	stage
 _INSTALL_SEQ=	100:install-message \
-				200:check-already-installed
-_INSTALL_SUSEQ=	300:fake-pkg 500:security-check
+				200:check-already-installed \
+				300:create-manifest
+_INSTALL_SUSEQ=	400:fake-pkg 500:security-check
 
 _PACKAGE_DEP=	stage
 _PACKAGE_SEQ=	100:package-message 300:pre-package 450:pre-package-script \


More information about the svn-ports-all mailing list