Date: Wed, 20 Jun 2018 15:15:23 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472875 - head/Mk Message-ID: <201806201515.w5KFFNW3087838@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806201515.w5KFFNW3087838>