diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-09-03 18:01:29 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-09-03 18:02:08 +0000 |
commit | 15ace930f6cfd368517018d6bc132ac2c4145ae8 (patch) | |
tree | c5fe719e985de66ee883d8a6210b6ec7a85ba267 | |
parent | 6e256ec530c74d266676b6049fae2b5d8991ff5c (diff) |
math/gismo: Replace USE_GCC=any with USE_GCC=yes
Since commit 96c17633d90386b5bcf8637bcba99a677184db85 in May 2021
USE_GCC=any is just an old (and odd) way of writing USE_GCC=yes
and was deprecated even before. Replace it with USE_GCC=yes.
PR: 258015
-rw-r--r-- | math/gismo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/gismo/Makefile b/math/gismo/Makefile index ecb3ef54298a..d00e4bda09bb 100644 --- a/math/gismo/Makefile +++ b/math/gismo/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cmake:testing compiler:c++14-lang USE_GITHUB= yes -USE_GCC= any # clang-11 crashes: https://bugs.llvm.org/show_bug.cgi?id=51468 +USE_GCC= yes # clang-11 crashes: https://bugs.llvm.org/show_bug.cgi?id=51468 USE_LDCONFIG= yes CMAKE_TESTING_ON= GISMO_BUILD_UNITTESTS # one test is known to fail: https://github.com/gismo/gismo/issues/466 |