misc: make getlasso3.sh non verbose

This commit is contained in:
Benjamin Dauvergne 2022-10-18 15:11:54 +02:00
parent f0ef849890
commit 5b6216f18f
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@ rm -f $DSTDIR/lasso.*
rm -f $DSTDIR/_lasso.*
# Link
ln -sv /usr/lib/python3/dist-packages/lasso.py $DSTDIR/
ln -s /usr/lib/python3/dist-packages/lasso.py $DSTDIR/
for SOFILE in /usr/lib/python3/dist-packages/_lasso.cpython-*.so
do
ln -sv $SOFILE $DSTDIR/
ln -s $SOFILE $DSTDIR/
done
exit 0