From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: tests/packages.scm fails with make check Date: Tue, 22 Jan 2013 17:58:07 +0100 Message-ID: <87ip6pf940.fsf@gnu.org> References: <201301192315.50429.andreas@enge.fr> <877gn8x8cq.fsf@gnu.org> <201301221603.37472.andreas@enge.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:39639) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxhAt-0005Wc-Jt for bug-guix@gnu.org; Tue, 22 Jan 2013 11:58:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TxhAn-0002Y9-Ni for bug-guix@gnu.org; Tue, 22 Jan 2013 11:58:15 -0500 Received: from mail1-relais-roc.national.inria.fr ([192.134.164.82]:2241) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxhAn-0002Xj-Hr for bug-guix@gnu.org; Tue, 22 Jan 2013 11:58:09 -0500 In-Reply-To: <201301221603.37472.andreas@enge.fr> (Andreas Enge's message of "Tue, 22 Jan 2013 16:03:36 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Andreas Enge Cc: Alen Skondro , bug-guix@gnu.org Hi! Andreas Enge skribis: > autoreconf returns: > configure.ac:18: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and= =20 > will soon be removed. > configure.ac:18: You should use the Autoconf-provided 'AC_PROG_MKDIR_P'=20 > macro instead, > configure.ac:18: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your=20 > Makefile.am files. > > AC_PROG_MKDIR_P was introduced in autoconf-2.60, so should be safe to use. Actually =E2=80=98AM_PROG_MKDIR_P=E2=80=99 is used in macros that come from= Gettext. Maybe newer versions of Gettext (will) use the new macro. > Then ./configure yields: > checking for the Guix system type... x86_64-linux > ./configure: line 6572: syntax error near unexpected token `GUILE,' > ./configure: line 6572: `PKG_CHECK_MODULES(GUILE, guile-2.0)' That=E2=80=99s because =E2=80=98aclocal=E2=80=99 didn=E2=80=99t find pkg.m4= =E2=80=93the set of Autoconf macros that comes with pkg-config. Perhaps you need to install another package to get pkg.m4, or perhaps you need to run ./bootstrap like this: ACLOCAL=3D"aclocal -I /path/to/pkg-config/macros" ./bootstrap HTH, Ludo=E2=80=99.