Added missing glibc-libidn package in LFS.
The udev-config file is used only in LFS.
This commit is contained in:
parent
c769ed171d
commit
d2a9d60e49
1 changed files with 11 additions and 2 deletions
|
@ -698,20 +698,29 @@ extract_commands() { #
|
||||||
echo " ...OK"
|
echo " ...OK"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
hlfs)
|
||||||
echo -n "Creating <${PROGNAME}> specific packageslist_.wget file"
|
echo -n "Creating <${PROGNAME}> specific packageslist_.wget file"
|
||||||
grep "\-version" $BOOK/general.ent | sed -e 's@<!ENTITY @@' \
|
grep "\-version" $BOOK/general.ent | sed -e 's@<!ENTITY @@' \
|
||||||
-e 's@">@"@' \
|
-e 's@">@"@' \
|
||||||
-e '/generic/d' >> packages
|
-e '/generic/d' >> packages
|
||||||
echo " ...OK"
|
echo " ...OK"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
lfs)
|
||||||
|
echo -n "Creating <${PROGNAME}> specific packageslist_.wget file"
|
||||||
|
grep "\-version" $BOOK/general.ent | sed -e 's@<!ENTITY @@' \
|
||||||
|
-e 's@">@"@' \
|
||||||
|
-e '/generic/d' >> packages
|
||||||
|
echo `grep "glibc" packages | sed 's@glibc@glibc-libidn@'` >> packages
|
||||||
|
echo `grep "udev-config-file" $BOOK/general.ent | sed -e 's@<!ENTITY @@' -e 's@">@"@'` >> packages
|
||||||
|
echo " ...OK"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Download the vim-lang package if it must be installed
|
# Download the vim-lang package if it must be installed
|
||||||
if [ "$VIMLANG" = "1" ] && [ ! "$PROGNAME" = "hlfs" ] ; then
|
if [ "$VIMLANG" = "1" ] && [ ! "$PROGNAME" = "hlfs" ] ; then
|
||||||
echo `grep "vim" packages | sed 's@vim@&-lang@'` >> packages
|
echo `grep "vim" packages | sed 's@vim@&-lang@'` >> packages
|
||||||
fi
|
fi
|
||||||
echo `grep "udev-config-file" $BOOK/general.ent | sed -e 's@<!ENTITY @@' -e 's@">@"@'` >> packages
|
|
||||||
|
|
||||||
# There is no useful patches.ent file so we will create one.
|
# There is no useful patches.ent file so we will create one.
|
||||||
case "${PROGNAME}" in
|
case "${PROGNAME}" in
|
||||||
|
|
Reference in a new issue