Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autogen.sh fails on autoconf 2.69c #70

Closed
trofi opened this issue Oct 31, 2020 · 1 comment
Closed

autogen.sh fails on autoconf 2.69c #70

trofi opened this issue Oct 31, 2020 · 1 comment

Comments

@trofi
Copy link

trofi commented Oct 31, 2020

It's a forward of downstream https://bugs.gentoo.org/750728 where cronie fails on autoconf-2.69c (soon to be autoconf-2.70).

$ ./autogen.sh
/usr/bin/m4:configure.ac:1: Warning: excess arguments to builtin `m4_define' ignored
autom4te-2.70_beta2: error: /usr/bin/m4 failed with exit status: 1
aclocal-1.16: error: echo failed with exit status: 1
autogen.sh: exit on error

It happens because autoconf-2.70 slightly changed quotation around AC_INIT and fails more prominently if there is not just an email address. The following workaround seems to fix it:

--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([cronie],[1.5.5],[[email protected],[email protected]])
+AC_INIT([cronie],[1.5.5],[[email protected]])
 AC_CONFIG_HEADER([config.h])
 AC_PREREQ(2.60)
@t8m t8m closed this as completed in 8191b84 Nov 2, 2020
@t8m
Copy link
Member

t8m commented Nov 2, 2020

Fixed, dropping the e-mail altogether. Thank you for the report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants