diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-06-04 05:53:21 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-06-04 05:53:21 +0000 |
commit | d09ed096c44ca516f3e4922e292b4afabd03ff11 (patch) | |
tree | 8472e59ca02578120ca7b8bc5e2af50d2954440e /editors | |
parent | graphics/py-OWSLib: Update to 0.24.1 (diff) |
*/*: Replace USE_GCC=any with USE_GCC=yes
USE_GCC=any has been equivalent to USE_GCC=yes in most cases (such
as i386 and amd64 since 12.x and depending on configuration 11.x,
most newer installations on other platforms, and 13.x across the
board).
Since commit 96c17633d90386b5bcf8 Mk/bsd.gcc.mk is treating them as
different spellings of the same, so continue the deorbiting of the
USE_GCC=any form and simply replace it with USE_GCC=yes.
This should not make any functional difference at all.
Discussed with: mat, linimon, pkubaj
Diffstat (limited to 'editors')
-rw-r--r-- | editors/cooledit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/cooledit/Makefile b/editors/cooledit/Makefile index 441812e155de..c8cb968de494 100644 --- a/editors/cooledit/Makefile +++ b/editors/cooledit/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gettext gmake libtool python xorg # gettext is linked to despite .mo files having been deleted -USE_GCC= any +USE_GCC= yes USE_LDCONFIG= yes USE_XORG= x11 xt GNU_CONFIGURE= yes |