diff options
author | mat <mat@FreeBSD.org> | 2018-06-20 23:15:23 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-06-20 23:15:23 +0800 |
commit | f8af91cb22d8a3ba4076d39c145af22d0b5f8215 (patch) | |
tree | 74242d77e6b3f4b27543a05dc204138be6dd014d /Mk | |
parent | 15e215253deb02349cc9a01d4481b97c410fd86b (diff) | |
download | freebsd-ports-gnome-f8af91cb22d8a3ba4076d39c145af22d0b5f8215.tar.gz freebsd-ports-gnome-f8af91cb22d8a3ba4076d39c145af22d0b5f8215.tar.zst freebsd-ports-gnome-f8af91cb22d8a3ba4076d39c145af22d0b5f8215.zip |
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
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e0afed2b2ecc..6121c91e3210 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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} |