From 234e5c0be18db607b28eaf0fd4a30d215abc0775 Mon Sep 17 00:00:00 2001
From: Eli Schwartz <eschwartz93@gmail.com>
Date: Sun, 26 Nov 2023 16:54:25 -0500
Subject: [PATCH 1/4] ax_llvm: fix longstanding documentation bug for
 --with-llvm=DIR

It accepts a filename, not a directory name, so say that.
---
 m4/ax_llvm.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/ax_llvm.m4 b/m4/ax_llvm.m4
index be105d6..22bdbb8 100644
--- a/m4/ax_llvm.m4
+++ b/m4/ax_llvm.m4
@@ -29,7 +29,7 @@
 AC_DEFUN([AX_LLVM],
 [
 AC_ARG_WITH([llvm],
-	AS_HELP_STRING([--with-llvm@<:@=DIR@:>@], [use llvm (default is yes) - it is possible to specify the root directory for llvm (optional)]),
+	AS_HELP_STRING([--with-llvm@<:@=ARG@:>@], [use llvm (default is yes) - it is possible to specify the root directory for llvm (optional)]),
 	[
     if test "$withval" = "no"; then
 		want_llvm="no"
-- 
2.41.0

