diff options
author | Cy Schubert <cy@FreeBSD.org> | 2023-02-10 14:35:01 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2023-02-10 14:40:46 +0000 |
commit | b3690ff9ffe8bfaa0460e888d5cbb0a1ea47f397 (patch) | |
tree | d6cd3940e0e0a46fcb9832bb8cbedf4cabb516b4 | |
parent | d66b0aa21b3d1a96585222815c6e339b282fdf49 (diff) | |
download | ports-b3690ff9ffe8bfaa0460e888d5cbb0a1ea47f397.tar.gz ports-b3690ff9ffe8bfaa0460e888d5cbb0a1ea47f397.zip |
shells/ksh93: Fix build with LLVM15
-rw-r--r-- | shells/ksh93/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/ksh93/Makefile b/shells/ksh93/Makefile index 9814c5114408..59464583933c 100644 --- a/shells/ksh93/Makefile +++ b/shells/ksh93/Makefile @@ -44,7 +44,7 @@ KSH93L_DESC= Install to ${PREFIX}/bin/ksh93l (legacy) CFLAGS+= -DMAP_TYPE LDFLAGS+= -lm -MAKE_ENV= CCFLAGS="-Wno-unused-value -Wno-parentheses -Wno-logical-op-parentheses" CFLAGS="${CFLAGS}" +MAKE_ENV= CCFLAGS="-Wno-unused-value -Wno-parentheses -Wno-logical-op-parentheses -Wno-int-conversion" CFLAGS="${CFLAGS}" STATIC_MAKE_ENV= LDFLAGS+=-static |