X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2Finject-xpdf.pl;h=0e08c53ea57b556883e1f2c1248878947f1a792c;hb=6a529bfa890997a55fec9ae0e0d388cf9d5276c2;hp=b9170238332a81f0b26d4e02680f2ea36cbfcd15;hpb=771343c207bda650c4b479565d4aecb79a67924a;p=swftools.git diff --git a/lib/pdf/inject-xpdf.pl b/lib/pdf/inject-xpdf.pl index b917023..0e08c53 100755 --- a/lib/pdf/inject-xpdf.pl +++ b/lib/pdf/inject-xpdf.pl @@ -15,7 +15,12 @@ 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 < ../xpdf-changes.patch"); + +$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 failed"); chdir(".."); system("rm -f xpdf"); system("ln -s $directory xpdf"); @@ -45,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);