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