From 06746393372357a20d346b462d7d3b9c5a5b7cec Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Wed, 1 Oct 2003 04:03:33 +0000 Subject: [PATCH] on an imperfect place anway the eval in the apply_patchfiles will never be needed anyway git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1574 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- scripts/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }