diff --git a/scripts/functions b/scripts/functions index 4cc86e0c4..dcc1bb95c 100644 --- a/scripts/functions +++ b/scripts/functions @@ -460,9 +460,9 @@ apply_patchfiles() { for x in $patchfiles; do echo "Apply patch $x ..." if [[ $x = *.bz2 ]] ; then - eval bzcat $x | patch $patchopt + bzcat $x | patch $patchopt else - eval patch $patchopt < $x + patch $patchopt < $x fi done }