Subject: | Example missing #!/usr/bin/perl |
Hi,
There's a missing "shebang" at the top of examples/uplevel-demo.pl .
As the file is shipped with executable bit set, it seems that the
intention is for it to be directly executable, which is not possible
without "#!/usr/bin/perl" on the first line.
Trivial patch attached.
Thanks,
dam
Subject: | examples-shebang.patch |
Index: libsub-uplevel-perl/examples/uplevel-demo.pl
===================================================================
--- libsub-uplevel-perl.orig/examples/uplevel-demo.pl 2007-12-12 13:01:53.000000000 +0200
+++ libsub-uplevel-perl/examples/uplevel-demo.pl 2007-12-12 13:02:02.000000000 +0200
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
use strict;
use warnings;