Change order in func_install_blfs so that wget is installed
with openssl support if selected
This commit is contained in:
parent
0d793a8580
commit
d6f2ebfaae
1 changed files with 2 additions and 2 deletions
|
@ -94,10 +94,10 @@ cat >$BUILDDIR$BLFS_ROOT/configuration <<EOF
|
|||
$LINE_PYTHON
|
||||
$LINE_LIBXML
|
||||
$LINE_LIBXSLT
|
||||
$LINE_WGET
|
||||
$LINE_TIDY
|
||||
$LINE_DBXML
|
||||
$LINE_OPENSSL
|
||||
$LINE_WGET
|
||||
$LINE_SVN
|
||||
$LINE_GPM
|
||||
$LINE_LYNX
|
||||
|
@ -133,7 +133,7 @@ popd
|
|||
rm -v $BUILDDIR$BLFS_ROOT/download_script
|
||||
|
||||
# Suppresses unneeded parts of the scriptlets
|
||||
if [ "$DEP_WGET" = y ]; then
|
||||
if [ "$DEP_WGET" = y ] && ! [ "$DEP_OPENSSL" = y ]; then
|
||||
sed -i s'/-ssl=.*/out-ssl/' $BUILDDIR$BLFS_ROOT/scripts/*wget
|
||||
fi
|
||||
if [ "$DEP_SUDO" = y ]; then
|
||||
|
|
Reference in a new issue