X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2Finject-xpdf.pl;h=16b2a77fb511430b43e77f97f719e93256f37dc5;hb=62a83d162b254d91da418cee25f5b87b067a3f92;hp=e893013e66d310da96913fc17a5b806bf24a74a7;hpb=418f0491296bd8c03e5a893dd270a6366a7516f4;p=swftools.git diff --git a/lib/pdf/inject-xpdf.pl b/lib/pdf/inject-xpdf.pl index e893013..16b2a77 100755 --- a/lib/pdf/inject-xpdf.pl +++ b/lib/pdf/inject-xpdf.pl @@ -12,10 +12,15 @@ mkdir("$directory/tmp/"); chdir("$directory/tmp/") or die; system("tar -zxvf ../../$filename") and die; -system("find -type f -exec mv {} .. \\;") and die; +system("find . -type f -exec mv {} .. \\;") and die; chdir(".."); -system("find -type d -exec rmdir {} \\; 2> /dev/null"); -system("patch < ../xpdf-changes.patch"); +system("find . -type d -exec rmdir {} \\; 2> /dev/null"); + +$c = 'find . \( -name "*.cc" -or -name "*.h" -or -name "*.c" \) -exec cp {} {}.orig \;'; +print "$c\n"; +system($c); + +system("patch < ../xpdf-changes.patch 2>&1 | grep -i failed"); chdir(".."); system("rm -f xpdf"); system("ln -s $directory xpdf"); @@ -31,8 +36,6 @@ PS3="choose> " if test "x\$VERSION" = "x";then select V in stable latest;do VERSION="\$V";break;done fi -case $VERSION - if test "x\$VERSION" = "xstable";then echo "Switching to stable version" rm -f xpdf @@ -47,7 +50,4 @@ EOF close(fi); system("chmod a+x switch"); -$c = 'find '.$directory.' \( -name "*.cc" -or -name "*.h" -or -name "*.c" \) -exec cp {} {}.orig \;'; -print "$c\n"; -system($c);