Browse Source

fixed typo in the patchfiles parsing in lx_config.sh

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1186 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
f5b26871f8
2 changed files with 5 additions and 2 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +4
    -2
      package/base/linux24/lx_config.sh

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -8,6 +8,7 @@
(fixes the bug that users can not supply kernel configs for the desktop
target)
- fixed screen for platforms with non-trival va_arg implementaion
- fixed typo in the patchfiles parsing in lx_config.sh
*) 2003-08-24 (2.0.0-rc1 - 2.0.0-rc2)

+ 4
- 2
package/base/linux24/lx_config.sh

@ -32,14 +32,16 @@ lx_cpu=`echo "$arch_machine" | sed -e s/x86/i386/ \
MAKE="$MAKE ARCH=$lx_cpu CROSS_COMPILE=$archprefix KCC=$KCC"
set -x
# correct the abolute path for patchfiles supplied in the .conf file
for x in $patchfiles ; do
if [ ! -e $x ] ; then
var_remove patchfiles " " $x
var_remove patchfiles " " "$x"
x=$archdir/$x
var_append parchfiles " " $x
var_append patchfiles " " "$x"
fi
done
set +x
lx_config ()
{

Loading…
Cancel
Save