Remove space in LIB dict

This commit is contained in:
Dryusdan 2021-03-16 14:57:18 +01:00
parent cb4905c8ed
commit 1c6b310073
1 changed files with 3 additions and 3 deletions

View File

@ -156,9 +156,9 @@ function _DEV
function _LIB
{
for lib_name in {libnss, libnss_dns, libxml, libcurl}
for lib_name in {libnss,libnss_dns,libxml,libcurl}
do
info "Copy ${lib}"
info "Copy ${lib_name}"
for lib in $(whereis ${lib_name})
do
if echo "${lib}" | grep -q "/usr/lib"
@ -208,7 +208,7 @@ function _CONFIGURE
mkdir -p "${WEBCHROOT}/${chrooter}"
for binary in $(ls "${CHROOTPATH}/${chrooter}")
do
info "hardlink ${chrooter}/${binary}"
#info "hardlink ${chrooter}/${binary}"
ln "${CHROOTPATH}/${chrooter}/${binary}" "${WEBCHROOT}/${chrooter}/${binary}"
done
done