From commits-return-8314-archive-asf-public=cust-asf.ponee.io@pig.apache.org Fri Oct 26 09:31:27 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 3D1FD180647 for ; Fri, 26 Oct 2018 09:31:27 +0200 (CEST) Received: (qmail 82077 invoked by uid 500); 26 Oct 2018 07:31:25 -0000 Mailing-List: contact commits-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list commits@pig.apache.org Received: (qmail 82066 invoked by uid 99); 26 Oct 2018 07:31:25 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2018 07:31:25 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 1A62F3A028E for ; Fri, 26 Oct 2018 07:31:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1844866 - /pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl Date: Fri, 26 Oct 2018 07:31:24 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20181026073125.1A62F3A028E@svn01-us-west.apache.org> Author: daijy Date: Fri Oct 26 07:31:24 2018 New Revision: 1844866 URL: http://svn.apache.org/viewvc?rev=1844866&view=rev Log: PIG-5366: Enable PigStreamingDepend to load from current directory in newer Perl versions (abstractdog via daijy) Modified: pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl Modified: pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl?rev=1844866&r1=1844865&r2=1844866&view=diff ============================================================================== --- pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl (original) +++ pig/trunk/test/e2e/pig/streaming/PigStreamingDepend.pl Fri Oct 26 07:31:24 2018 @@ -16,6 +16,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +BEGIN { + push @INC, '.'; +} use strict; use PigStreamingModule;