From owner-freebsd-questions@FreeBSD.ORG Fri Apr 24 08:25:09 2015 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E0D5B79; Fri, 24 Apr 2015 08:25:09 +0000 (UTC) Received: from smtp209.alice.it (smtp209.alice.it [82.57.200.105]) by mx1.freebsd.org (Postfix) with ESMTP id 1ABDE17FC; Fri, 24 Apr 2015 08:25:08 +0000 (UTC) Received: from soth.ventu (87.18.56.84) by smtp209.alice.it (8.6.060.28) (authenticated as acanedi@alice.it) id 552F94EA01379963; Fri, 24 Apr 2015 10:24:56 +0200 Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.15.1/8.14.9) with ESMTP id t3O8OtdO065333; Fri, 24 Apr 2015 10:24:55 +0200 (CEST) (envelope-from ml@netfence.it) Message-ID: <5539FDD7.8000604@netfence.it> Date: Fri, 24 Apr 2015 10:24:55 +0200 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Michael Schuster CC: questions Subject: Re: Bacula and perl 5.20 References: <5538919D.8060507@netfence.it> <553893FE.8090601@netfence.it> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Apr 2015 08:25:09 -0000 On 04/24/15 07:00, Michael Schuster wrote: > Running "env perl" from the command line seems to work however. > > > what does that mean in detail? It means that "perl" is run. > what does "which perl" print out? On system with perl 5.16/5.18 and USE_PERL=YES, it will print "/usr/bin/perl". On system with perl 5.20 or 5.16/5.18 with USE_PERL=NO, it will print "/usr/local/bin/perl". Bacula, as most ports, starts with no /usr/local/bin in PATH, so "env perl" (from its scripts) won't work. bye & Thanks av.