git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15983c1
)
always add a path after 'find'
author
Matthias Kramm
<kramm@quiss.org>
Fri, 30 Jan 2009 15:11:02 +0000
(16:11 +0100)
committer
Matthias Kramm
<kramm@quiss.org>
Fri, 30 Jan 2009 15:11:02 +0000
(16:11 +0100)
lib/pdf/inject-xpdf.pl
patch
|
blob
|
history
diff --git
a/lib/pdf/inject-xpdf.pl
b/lib/pdf/inject-xpdf.pl
index
44848ff
..
16b2a77
100755
(executable)
--- a/
lib/pdf/inject-xpdf.pl
+++ b/
lib/pdf/inject-xpdf.pl
@@
-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";