always add a path after 'find'
authorMatthias Kramm <kramm@quiss.org>
Fri, 30 Jan 2009 15:11:02 +0000 (16:11 +0100)
committerMatthias Kramm <kramm@quiss.org>
Fri, 30 Jan 2009 15:11:02 +0000 (16:11 +0100)
lib/pdf/inject-xpdf.pl

index 44848ff..16b2a77 100755 (executable)
@@ -12,9 +12,9 @@ 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";