Browse Source

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
rocklinux
Rene Rebe 21 years ago
parent
commit
0674639337
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      scripts/functions

+ 2
- 2
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
}

Loading…
Cancel
Save