From e5ccb6ed2e65adab895ddee9ba5c91fce97a78bf Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Tue, 30 Sep 2003 15:00:35 +0000 Subject: [PATCH] 16:57 < clifford> there is an eval missing for the 1st patch... 16:58 < clifford> ..but that shouldn't hurt since patchopt="-bfp1 -z .orig" 16:59 < clifford> rxr: could you eighter remove the eval for the 2nd patch or add it to the 1st? git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1560 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- scripts/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/functions b/scripts/functions index 667ff84ee..4cc86e0c4 100644 --- a/scripts/functions +++ b/scripts/functions @@ -460,7 +460,7 @@ apply_patchfiles() { for x in $patchfiles; do echo "Apply patch $x ..." if [[ $x = *.bz2 ]] ; then - bzcat $x | patch $patchopt + eval bzcat $x | patch $patchopt else eval patch $patchopt < $x fi