From: Fred Drake Date: Thu, 19 Mar 1998 05:17:49 +0000 (+0000) Subject: Use "/usr/bin/env perl" for the #! line, and change the -i option to: X-Git-Tag: v1.5.1~333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2543769ca531dbe964568ca7b15cd0f4b444b113;p=python Use "/usr/bin/env perl" for the #! line, and change the -i option to: use English; $INPLACE_EDIT = ''; to get the inplace-editing behavior. --- diff --git a/Doc/tools/node2label.pl b/Doc/tools/node2label.pl index 73a3809a1d..3e4f8f0adc 100755 --- a/Doc/tools/node2label.pl +++ b/Doc/tools/node2label.pl @@ -1,4 +1,7 @@ -#!/depot/gnu/plat/bin/perl -i +#! /usr/bin/env perl + +use English; +$INPLACE_EDIT = ''; # read the labels, then reverse the mappings require "labels.pl";