Browse Source

fixed config.in to not discard packages too early

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2072 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
fc789f3c2c
2 changed files with 4 additions and 2 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +3
    -2
      scripts/config.in

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,7 @@
*) 2003-12-27 (2.0.0-rc3 - 2.0.0-rc4)
- Valentin Ziegler: updated flex (2.5.31)
- fixed config.in to not discard packages too early
*) 2003-12-25 (2.0.0-rc3 - 2.0.0-rc4)

+ 3
- 2
scripts/config.in

@ -139,8 +139,9 @@ block_begin 7
then . architecture/$ROCKCFG_ARCH/config.in ; fi
bool 'This is a cross-build between architectures' ROCKCFG_CROSSBUILD 0
if [ "$ROCKCFG_CROSSBUILD" = 1 ] ; then
sed 's,^\(. ..\)[^ ]*,\1--------,' < config/$config/packages |
grep -vx '. --* .*' > config/$config/packages.new
sed -e 's,^\(. ..\)[^ ]*,\1--------,' \
< config/$config/packages \
> config/$config/packages.new
mv config/$config/packages.new config/$config/packages
ROCKCFG_ID="$ROCKCFG_ID-cross" ; ROCKCFGSET_USE_CROSSCC=1
fi

Loading…
Cancel
Save