svn commit: r472875 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Wed Jun 20 15:15:24 UTC 2018


Author: mat
Date: Wed Jun 20 15:15:23 2018
New Revision: 472875
URL: https://svnweb.freebsd.org/changeset/ports/472875

Log:
  Sort ONLY_FOR_ARCHS and NOT_FOR_ARCHS on display.
  
  This is so that all IGNORE message end up looking the same, and grep'ing
  and sorting them is easier.
  
  Reported by:	linimon
  Sponsored by:	Absolight

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

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Wed Jun 20 15:06:52 2018	(r472874)
+++ head/Mk/bsd.port.mk	Wed Jun 20 15:15:23 2018	(r472875)
@@ -2774,9 +2774,9 @@ __ARCH_OK?=		1
 
 .if !defined(__ARCH_OK)
 .if defined(ONLY_FOR_ARCHS)
-IGNORE=		is only for ${ONLY_FOR_ARCHS},
+IGNORE=		is only for ${ONLY_FOR_ARCHS:O},
 .else # defined(NOT_FOR_ARCHS)
-IGNORE=		does not run on ${NOT_FOR_ARCHS},
+IGNORE=		does not run on ${NOT_FOR_ARCHS:O},
 .endif
 IGNORE+=	while you are running ${ARCH}
 


More information about the svn-ports-all mailing list