svn commit: r362347 - head/Mk

Bryan Drewery bdrewery at FreeBSD.org
Sun Jul 20 18:56:12 UTC 2014


Author: bdrewery
Date: Sun Jul 20 18:56:11 2014
New Revision: 362347
URL: http://svnweb.freebsd.org/changeset/ports/362347
QAT: https://qat.redports.org/buildarchive/r362347/

Log:
  - Always pass '-f' with ${RM}. This fixes many ports when building as a user
    and not root. They were asking for confirmation.
  
  Reported by:	jhb
  Phabric:	D111
  Reviewed by:	bapt, antoine
  With hat:	portmgr

Modified:
  head/Mk/bsd.commands.mk

Modified: head/Mk/bsd.commands.mk
==============================================================================
--- head/Mk/bsd.commands.mk	Sun Jul 20 18:54:20 2014	(r362346)
+++ head/Mk/bsd.commands.mk	Sun Jul 20 18:56:11 2014	(r362347)
@@ -72,7 +72,7 @@ PRINTF?=		/usr/bin/printf
 PS_CMD?=		/bin/ps
 PW?=			/usr/sbin/pw
 REALPATH?=		/bin/realpath
-RM?=			/bin/rm
+RM?=			/bin/rm -f
 RMDIR?=			/bin/rmdir
 SED?=			/usr/bin/sed
 SETENV?=		/usr/bin/env


More information about the svn-ports-all mailing list