[Bug 69216] Be able to run tests with recent automake
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Wed Sep 11 06:26:56 PDT 2013
https://bugs.freedesktop.org/show_bug.cgi?id=69216
--- Comment #19 from Simon McVittie <simon.mcvittie at collabora.co.uk> ---
(In reply to comment #18)
> > +AC_ARG_ENABLE(debug,
> > + AC_HELP_STRING([--disable-debug],[compile without debug code]),
> > + enable_debug=$enableval, enable_debug=yes )
Less misleading indentation would also be nice: enable_debug=... is at the same
level as AC_HELP_STRING.
Strictly speaking, the whole AC_HELP_STRING call should also be inside [] to
avoid underquoting:
AC_ARG_ENABLE([debug],
[AC_HELP_STRING([--disable-debug], [compile without debug code])],
[], [enable_debug=yes])
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the telepathy-bugs
mailing list