Cygwin: Use aclocal option --system-acdir rather than --acdir

In autogen.sh, use 'aclocal --system-acdir' rather than 'aclocal --acdir'.

'--acdir' was deprecated in automake 1.11 and removed in automake 1.13.
This commit is contained in:
Jon Turney 2020-10-15 18:47:36 +01:00
parent 78bfd7dbb9
commit 3662877f31
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
/usr/bin/aclocal --acdir=..
/usr/bin/aclocal --system-acdir=..
/usr/bin/autoconf -f
exec /bin/rm -rf autom4te.cache

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
/usr/bin/aclocal --acdir=..
/usr/bin/aclocal --system-acdir=..
/usr/bin/autoconf -f
exec /bin/rm -rf autom4te.cache

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
/usr/bin/aclocal --acdir=..
/usr/bin/aclocal --system-acdir=..
/usr/bin/autoconf -f
exec /bin/rm -rf autom4te.cache