From owner-svn-ports-head@FreeBSD.ORG Mon Jun 24 18:57:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 480DFCC2; Mon, 24 Jun 2013 18:57:57 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3A78A1919; Mon, 24 Jun 2013 18:57:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5OIvva4097901; Mon, 24 Jun 2013 18:57:57 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5OIvvFc097900; Mon, 24 Jun 2013 18:57:57 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201306241857.r5OIvvFc097900@svn.freebsd.org> From: Dirk Meyer Date: Mon, 24 Jun 2013 18:57:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321706 - head/graphics/graphviz/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 18:57:57 -0000 Author: dinoex Date: Mon Jun 24 18:57:56 2013 New Revision: 321706 URL: http://svnweb.freebsd.org/changeset/ports/321706 Log: - fix option PERL PR: 179666 Submitted by: Geraud CONTINSOUZAS Modified: head/graphics/graphviz/files/patch-config_perl.pl Modified: head/graphics/graphviz/files/patch-config_perl.pl ============================================================================== --- head/graphics/graphviz/files/patch-config_perl.pl Mon Jun 24 18:54:47 2013 (r321705) +++ head/graphics/graphviz/files/patch-config_perl.pl Mon Jun 24 18:57:56 2013 (r321706) @@ -1,9 +1,14 @@ ---- config/config_perl.pl.orig 2008-07-14 14:54:04.000000000 +0200 -+++ config/config_perl.pl 2009-03-15 11:08:29.000000000 +0100 -@@ -11,5 +11,5 @@ +--- config/config_perl.pl.orig 2013-02-15 00:27:39.000000000 +1100 ++++ config/config_perl.pl 2013-06-18 11:18:34.000000000 +1100 +@@ -11,10 +11,9 @@ print "-I$archlib/CORE"; } if ($ARGV[0] eq "PERL_INSTALL_DIR") { -- print "$Config{vendorarch}" -+ print "$Config{sitearch}" - } +- + my $d; + +- foreach $d qw(installvendorarch vendorarch installsitearch sitearch) { ++ foreach $d ( qw(installvendorarch vendorarch installsitearch sitearch) ) { + if (exists($Config{$d}) and defined($Config{$d}) and + ($Config{$d} ne '') ) { + print "$Config{$d}";