From 56f727c6b2a391db7e92fd1a93b75a5a92c17cc1 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Fri, 30 Jan 2009 16:11:02 +0100 Subject: [PATCH] always add a path after 'find' --- lib/pdf/inject-xpdf.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pdf/inject-xpdf.pl b/lib/pdf/inject-xpdf.pl index 44848ff..16b2a77 100755 --- 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"; -- 1.7.10.4