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.
This commit is contained in:
rcombs 2022-02-17 18:09:06 -06:00 committed by GitHub
parent 36e0921c71
commit 7c036fc31d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
AC_INIT(editline, 1.17.1, https://github.com/troglobit/editline/issues) 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_INIT_AUTOMAKE([1.11 foreign dist-xz])
AM_SILENT_RULES([yes]) AM_SILENT_RULES([yes])