Browse Source

fix linux* for ppx (strange IFS reset issue ...)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1307 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 22 years ago
parent
commit
672b79d210
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      package/base/linux24/linux24.conf

+ 4
- 1
package/base/linux24/linux24.conf

@ -72,8 +72,11 @@ main_lx() {
cp -vf vmlinux $root/boot/vmlinux
eval $MAKE zImage
# copy some specially pre-processed files with version
echo "before $IFS"
IFS=$' \t\n' # correcly set IFS - it get mangled somewhere ...
echo "after $IFS"
for x in $(cd arch/ppc/boot/images/ ; ls zImage.*) ; do
cp -v arch/ppc/boot/images/$x
cp -v arch/ppc/boot/images/$x \
$root/boot/${x/zImage/zImage-$ver}
done
;;

Loading…
Cancel
Save