From 7c6c50c037d9b969762062f26cafe833d6fced3f 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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/m4/ax_llvm.m4 b/m4/ax_llvm.m4
index be105d6..712f86d 100644
--- a/m4/ax_llvm.m4
+++ b/m4/ax_llvm.m4
@@ -24,12 +24,12 @@
 #   and this notice are preserved. This file is offered as-is, without any
 #   warranty.
 
-#serial 16
+#serial 17
 
 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

