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:
parent
78bfd7dbb9
commit
3662877f31
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue