Hello List, I'm building a dovecot-2.2.27 RPM for CentOS 7 and running into some issues The dovecot.spec (http://pkgs.fedoraproject.org/cgit/rpms/dovecot.git/tree/dovecot.spec) file runs 'autoreconf -I . -fiv' for aarch64 support just before the %configure option but is failing This worked fine on <= 2.2.26.0 when there was an m4/*.m4 directory (with *.m4 in it) in the sources. Is there something I should be aware of? Was the m4 directory removed for a reason? As a workaround I created the m4 directory and everything worked out, but is this the best solution? Eric
Hello Eric, For me, aclocal --install -I m4 preparation step helps and seems to be correct. Certain autoconf version scripts perform this step later than needed.
Thanks Alexey! Worked a charm. On 12/4/2016 12:29 AM, Alexey Asemov (Alex/AT) wrote:> Hello Eric, > > For me, > > aclocal --install -I m4 > > preparation step helps and seems to be correct. Certain autoconf > version scripts perform this step later than needed.