From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 3 14:49:58 2007 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE49516A41B for ; Fri, 3 Aug 2007 14:49:58 +0000 (UTC) (envelope-from rendol@mail.zp.ua) Received: from mail.zp.ua (relay3-zp.express.net.ua [80.254.0.2]) by mx1.freebsd.org (Postfix) with ESMTP id 61E0B13C458 for ; Fri, 3 Aug 2007 14:49:58 +0000 (UTC) (envelope-from rendol@mail.zp.ua) Received: from mail.zp.ua (localhost [127.0.0.1]) by mail.zp.ua (Postfix) with ESMTP id 75294FFBDCA for ; Fri, 3 Aug 2007 17:28:15 +0300 (EEST) Received: from [10.11.11.15] (mel.express.net.ua [80.254.3.182]) by mail.zp.ua (Postfix) with ESMTP id 66411FF56F9 for ; Fri, 3 Aug 2007 17:28:06 +0300 (EEST) Date: Fri, 3 Aug 2007 17:27:47 +0300 From: Sergiy Kazakov X-Mailer: The Bat! (v3.80.06) Professional X-Priority: 3 (Normal) Message-ID: <382789756.20070803172747@mail.zp.ua> To: freebsd-ports-bugs@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: Subject: automake bug? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergiy Kazakov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2007 14:49:58 -0000 Hello freebsd-ports-bugs, While php4-extensions installation (via ports tree) automake-1.9.6_2 was installed, but I've met the problem while using it. It shows error: --------------------------- cut here start --------------------------- ===> Configuring for firebird-client-2.0.1 Can't locate Automake/Config.pm in @INC (@INC contains: /usr/local/share/automake@APIPVERSION@ /usr/local/lib/perl5/5.8.8/BSDPAN /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at /usr/local/bin/aclocal-1.9 line 36. BEGIN failed--compilation aborted at /usr/local/bin/aclocal-1.9 line 36. *** Error code 2 --------------------------- cut here finish --------------------------- After browsing automake package content I've been found it in /usr/local/share/automake/Automake/Config.pm After examining of aclocal-1.9 file I found that it contain line, which (probably) contains an error(see error message above): --------------------------- cut here start --------------------------- BEGIN { my $perllibdir = $ENV{'perllibdir'} || '/usr/local/share/automake@APIPVERSION@'; unshift @INC, (split ':', $perllibdir); } --------------------------- cut here finish --------------------------- Non-interpolation was used and APIPVERSION variable is not defined. After: --------------------------- cut here start --------------------------- --- aclocal-1.9.bad 2007-08-03 17:25:11.000000000 +0300 +++ aclocal-1.9 2007-08-03 17:22:45.000000000 +0300 @@ -29,7 +29,7 @@ BEGIN { - my $perllibdir = $ENV{'perllibdir'} || '/usr/local/share/automake@APIPVERSION@'; + my $perllibdir = $ENV{'perllibdir'} || '/usr/local/share/automake' . $ENV{'AUTOMAKE_VERSION'}; unshift @INC, (split ':', $perllibdir); } --------------------------- cut here finish --------------------------- it looks like ok. -- Sincerely, Sergiy mailto:rendol@mail.zp.ua