From owner-freebsd-ports@FreeBSD.ORG Wed Jan 11 15:55:16 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 73143106567B for ; Wed, 11 Jan 2012 15:55:08 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3786C8FC19 for ; Wed, 11 Jan 2012 15:55:06 +0000 (UTC) Received: by ggki1 with SMTP id i1so496320ggk.13 for ; Wed, 11 Jan 2012 07:55:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=NvYInLUOrMpwS2waUhrzcuvLtznhTo3+bV/Dfn44dgA=; b=rx1Crt0f+JOQ7gaGh6I9ixWyXcVl7I/rafSqrDqgboQVHwc0mEKC0oaJ20qRhIfKr9 db4SiW4OH5Wjdo8is2D1oS1QqdT/zZyLAXyBUxWTc7+neD2qngH/3CfOL0FlGLEMYD0C LGiEd5MTEUyIr/KUAseUu1lVQ3oZ7IxVv/wEQ= MIME-Version: 1.0 Received: by 10.50.161.135 with SMTP id xs7mr7296060igb.15.1326297306293; Wed, 11 Jan 2012 07:55:06 -0800 (PST) Received: by 10.231.207.7 with HTTP; Wed, 11 Jan 2012 07:55:06 -0800 (PST) Received: by 10.231.207.7 with HTTP; Wed, 11 Jan 2012 07:55:06 -0800 (PST) In-Reply-To: <4F0DAC40.3030109@yandex.ru> References: <4F0B36BD.8070202@yandex.ru> <1RkOJ1-000AFf-3x@internal.tormail.net> <4F0BAC0C.3050006@yandex.ru> <1RkdhS-00096n-DR@internal.tormail.net> <4F0DAC40.3030109@yandex.ru> Date: Wed, 11 Jan 2012 15:55:06 +0000 Message-ID: From: Chris Rees To: Ruslan Mahmatkhanov Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Jan Beich , 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: Wed, 11 Jan 2012 15:55:16 -0000 On 11 Jan 2012 15:36, "Ruslan Mahmatkhanov" wrote: > > Jan Beich wrote on 10.01.2012 19:33: > >> 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? > > > > You are quite right. I just built it in clean environment and was able to reproduce the breakage, described in original PR. And the patch works as expected. I just committed this. Thanks. > > Since i don't saw strong objections about making this symlinks non-conditional (as we already know, it will not harm read-only LOCALBASE users), i'll come with PR's later. > > You mean read-only !PREFIX ;) Chris