From owner-freebsd-ports@FreeBSD.ORG Tue Jan 10 15:35:04 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE339106564A for ; Tue, 10 Jan 2012 15:35:04 +0000 (UTC) (envelope-from jbeich@tormail.net) Received: from server2.hudsonvalleyhost.com (server2.hudsonvalleyhost.com [66.7.195.77]) by mx1.freebsd.org (Postfix) with ESMTP id A70F98FC18 for ; Tue, 10 Jan 2012 15:35:04 +0000 (UTC) Received: from [68.71.46.138] (port=52385 helo=internal.tormail.net) by server2.hudsonvalleyhost.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.69) (envelope-from ) id 1Rkdj1-0039Bd-6W; Tue, 10 Jan 2012 10:35:01 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.net; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:Date:References:In-Reply-To:Subject:Cc:To:From; bh=1LBkjWdJgAd5gaCm4rB2V0wV+ozS7FUFTlMk6RmVXG0=; b=jDmaRatg+BkbHxH1n5/deJgOD8xbFmICrItWqp3QciH1zdj5UqSF5OqDatv1cJXFZ8V3nerOngpxI76HipmZ/1htPIemszj6jR3c0MLPdQlKq0xOg2jdJl4K5dDNu/0i1VtdEafi79oxl+BQWTB4wn/YU9FUiJHlDqJD21cqZ58=; Received: from jbeich by internal.tormail.net with local (Exim 4.63) (envelope-from ) id 1RkdhS-00096n-DR; Tue, 10 Jan 2012 15:33:26 +0000 From: Jan Beich To: Ruslan Mahmatkhanov In-Reply-To: <4F0BAC0C.3050006@yandex.ru> (Ruslan Mahmatkhanov's message of "Tue, 10 Jan 2012 07:10:04 +0400") References: <4F0B36BD.8070202@yandex.ru> <1RkOJ1-000AFf-3x@internal.tormail.net> <4F0BAC0C.3050006@yandex.ru> Date: Wed, 11 Jan 2012 03:33:02 +1200 MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1RkdhS-00096n-DR@internal.tormail.net> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server2.hudsonvalleyhost.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tormail.net X-Source: X-Source-Args: X-Source-Dir: Cc: FreeBSD Ports Mailing List Subject: Re: Perl symlinks question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jan 2012 15:35:05 -0000 Ruslan Mahmatkhanov writes: >> Ruslan Mahmatkhanov writes: >> >>> There is PR: http://bugs.freebsd.org/163687 >>> It tries to fix port building when user built it's perl installation >>> with USE_PERL option (creating symlinks in /usr/bin) set to off (not >>> the default). Patch in PR just replaces static shebang with ${PERL} >>> variable from Mk/bsd.perl.mk. But it doesn't actually fix the build, >>> because consequent call of aclocal-1.11 will fail since it's shebang >>> set to '/usr/bin/perl' too. >> [...] >> >> Can you shed more light on the aclocal issue? Does the submitter know? >> nss_ldap installs fine after applying ports/163687. >> >> $ ls -1d /usr/local/share/aclocal* >> /usr/local/share/aclocal/ >> /usr/local/share/aclocal-1.11/ >> /usr/local/share/aclocal-1.4/ >> $ fgrep -r /usr/bin/perl /usr/local/share/aclocal* >> Exit 1 > > Sure. > ===> Configuring for nss_ldap-1.265_7 > env: /usr/local/bin/aclocal-1.11: No such file or directory > *** Error code 127 > > [rm@smeshariki3 ~/learn]> head -3 `which aclocal-1.11` > #!/usr/bin/perl -w > # -*- perl -*- > # Generated from aclocal.in; do not edit by hand. This line tells enough. aclocal used @PERL@ binary detected during devel/automake installation. Have you tried to reinstall dependent ports after turning off USE_PERL option? > > Submitter doesn't seems know about (or didn't faced this).