From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28529 invoked by alias); 17 Feb 2014 04:08:19 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32400 Received: (qmail 21229 invoked from network); 17 Feb 2014 04:08:14 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=mCkYt9O93WqBIkIj1X1PlfgOXbgVJixV5NMmT2L65Hc=; b=1Czs8fRIOgEIIkJEC3qlExvkODddntAPlYRF9g0do1cuHwooLrZFIcbMqrYMtRfATd 5Ji7x45yAjZaU6vqNdJtNAutpr5PTyS0LRbRUcr4/k3TuVCnAZZpyaVVnB2hrzd8mx0i Dw2qrhyxzdYkdD4pSWZjpoo+31Y7VzoDqohz6tPJIN2QAIpi9B+T40HS41VN7ynDSw8R b1y/wc/stsD6/EibNAGzwUPyzfYDfOULQeySDszKNDFOUOsj6e8PzWDDUqYq0dtc6Q5Y Ypgf0TfARE+FjyeM+VxqLgNy0qLQ8HfplyJ5F0GPfe7bjbx2rt0dR7Ze8m4hAnGV0wpn BLxA== X-Received: by 10.14.202.136 with SMTP id d8mr25043598eeo.46.1392610091439; Sun, 16 Feb 2014 20:08:11 -0800 (PST) From: m0viefreak To: zsh-workers@zsh.org Cc: m0viefreak Subject: [PATCH 2/4] Util/helpfiles: use /usr/bin/env in shebang line Date: Mon, 17 Feb 2014 05:07:57 +0100 Message-Id: <1392610079-2632-3-git-send-email-m0viefreak.cm@googlemail.com> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1392610079-2632-1-git-send-email-m0viefreak.cm@googlemail.com> References: <1392610079-2632-1-git-send-email-m0viefreak.cm@googlemail.com> This doesn't hard code the path to perl when called by ./helpfiles. This also fixes execution of the script on systems like linux, which do not support more than one argument in the #! lne. --- Util/helpfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util/helpfiles b/Util/helpfiles index cdce888..9e611d7 100755 --- a/Util/helpfiles +++ b/Util/helpfiles @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -- -*-perl-*- +#!/usr/bin/env perl # helpfiles: make help files for Z-shell builtins from the manual entries. -- 1.9.0