remapunicode paramter
[swftools.git] / lib / pdf / inject-xpdf.pl
index 045e990..ba6cea6 100755 (executable)
@@ -15,7 +15,7 @@ system("tar -zxvf ../../$filename") and die;
 system("find -type f -exec mv {} .. \\;") and die;
 chdir("..");
 system("find -type d -exec rmdir {} \\; 2> /dev/null");
-system("patch --verbose < ../xpdf-changes.patch") and die;
+system("patch < ../xpdf-changes.patch") and die;
 chdir("..");
 system("rm -f xpdf");
 system("ln -s $directory xpdf");
@@ -25,10 +25,10 @@ open(fi, ">switch");
 print fi <<EOF
 #!/bin/sh
 
-VERSION=$1
+VERSION=\$1
 PS3="choose> "
 
-if test "x$VERSION" = "x";then
+if test "x\$VERSION" = "x";then
     select V in stable latest;do VERSION="$V";break;done
 fi