[tex-live] Re: TeX Live UNIX shell scripts

Thomas Esser te@informatik.uni-hannover.de
Mon, 22 Apr 2002 19:59:33 +0200


> diff -ru alpha-linux/t1mapper powerpc-aix4.3.3.0/t1mapper
> --- alpha-linux/t1mapper        Wed Apr 17 22:55:02 2002
> +++ powerpc-aix4.3.3.0/t1mapper Thu Apr 18 18:08:03 2002
> @@ -1,4 +1,4 @@
> -#!/usr/bin/perl -w
> +#!/usr/bin/env perl -w

I think that this is not portable. Some UNIX kernels will call env with
the argument "perl -w" (without splitting). So, if we use the env-trick,
we cannot use the -w option of perl, I think.

Thomas