From 7c036fc31d44de41dd42a4feef4dc725609bcbb4 Mon Sep 17 00:00:00 2001 From: rcombs Date: Thu, 17 Feb 2022 18:09:06 -0600 Subject: [PATCH] Avoid naming a dir "aux" This is a reserved name on win32. This results in this warning in autoreconf: ``` configure.ac:2: warning: name 'aux' is reserved on W32 and DOS platforms ``` I'm not sure if this lib actually works on windows, but the change is harmless regardless. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 880f6f1..b524e9a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT(editline, 1.17.1, https://github.com/troglobit/editline/issues) -AC_CONFIG_AUX_DIR(aux) +AC_CONFIG_AUX_DIR(build-aux) AM_INIT_AUTOMAKE([1.11 foreign dist-xz]) AM_SILENT_RULES([yes])