git: 4764684db30f - 2025Q2 - editors/imhex: Fix build error on 13.x

From: MANTANI Nobutaka <nobutaka_at_FreeBSD.org>
Date: Sat, 12 Apr 2025 18:56:08 UTC
The branch 2025Q2 has been updated by nobutaka:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4764684db30f66bb31883b72ac1617ac2f6192a1

commit 4764684db30f66bb31883b72ac1617ac2f6192a1
Author:     MANTANI Nobutaka <nobutaka@FreeBSD.org>
AuthorDate: 2025-04-12 18:45:09 +0000
Commit:     MANTANI Nobutaka <nobutaka@FreeBSD.org>
CommitDate: 2025-04-12 18:55:27 +0000

    editors/imhex: Fix build error on 13.x
    
    MFH:            2025Q2
    (cherry picked from commit e899a19c8eb1c356ba0f641d8c4d9eafb6333b4e)
---
 editors/imhex/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/editors/imhex/Makefile b/editors/imhex/Makefile
index 12656ec298db..28bf1bdbde12 100644
--- a/editors/imhex/Makefile
+++ b/editors/imhex/Makefile
@@ -116,7 +116,7 @@ IGNORE=	requires libc++ of LLVM 17 on the base system
 .endif
 
 # After LLVM 18 import into the base system
-.if (${OSREL:R} == 15 && ${OSVERSION} >= 1500018) || ${OSREL:R} == 14
+.if (${OSREL:R} == 15 && ${OSVERSION} >= 1500018) || ${OSREL:R} < 15
 CXXFLAGS+=	-fexperimental-library -D_LIBCPP_ENABLE_EXPERIMENTAL
 .endif