get rid of #!... -CA in subset.pl
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 20 Oct 2010 10:28:07 +0000 (12:28 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 20 Oct 2010 10:28:07 +0000 (12:28 +0200)
font-optimizer/subset.pl

index fb2eb95..642fe3d 100755 (executable)
@@ -1,5 +1,8 @@
-#!/usr/bin/perl -CA
-  # use the -CA flag so @ARGV is interpreted as UTF-8
+#!/usr/bin/perl
+
+# -CA flag is forbidden in #! line
+use Encode qw(decode);
+    @ARGV = map { decode 'utf-8', $_ } @ARGV;
 
 use strict;
 use warnings;