Skip to Content.
Sympa Menu

devel - Re: [sympa-dev] Debian Packages for Sympa 6.0.1

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Guillaume Rousse <address@concealed>
  • To: address@concealed
  • Subject: Re: [sympa-dev] Debian Packages for Sympa 6.0.1
  • Date: Mon, 12 Apr 2010 22:57:31 +0200

Le 11/04/2010 22:42, David Verdin a écrit :
> Hi,
>
> This is due to an unset --docdir configure parameter.
> It looks like it is not correctly defaulted in the configure.ac
Because this variable is only defined in autoconf 2.60, and the 6.0 and
6.0.1 tarballs were generated with autoconf 2.59.

The attached patch prevent the issue, by requiring 2.60 minimal autoconf
version. The other solution being not to use docdir (and its derivate,
as pdfdir), but datadir/doc instead.

BTW, this is one of the three patches I sent to sympa-authors ML some
times ago (2/1/2010).
--
BOFH excuse #105:

UPS interrupted the server's power
--- configure.ac.new 2010-01-02 21:09:19.000000000 +0100
+++ configure.ac.new.new 2010-01-02 21:23:18.000000000 +0100
@@ -19,7 +19,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

-AC_PREREQ(2.59)
+AC_PREREQ(2.60)
AC_INIT(sympa, 6.1a.1, address@concealed)
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])



Archive powered by MHonArc 2.6.19+.

Top of Page