update-lfs.sh: remove tools package from instpkg.xml

This commit is contained in:
Pierre Labastie 2018-12-08 10:04:25 +00:00
parent 94a78ddfa2
commit c8d5f11878

View file

@ -98,7 +98,11 @@ if [ x$ANSWER = "xyes" ] ; then
for pack in $(grep '<productname' $LFS_FULL |
sed 's/.*>\([^<]*\)<.*/\1/' |
sort | uniq); do
if [ "$pack" = "libstdc++" ]; then continue; fi
if [ "$pack" = "libstdc++" -o \
"$pack" = "tcl" -o \
"$pack" = "tcl-core" -o \
"$pack" = "expect" -o \
"$pack" = "dejagnu" ]; then continue; fi
VERSION=$(grep -A1 ">$pack</product" $LFS_FULL |
head -n2 |
sed -n '2s/.*>\([^<]*\)<.*/\1/p')