Removed obsolete GNU C library 'libcidn'.

This commit is contained in:
Ivan Davidov 2019-09-06 19:02:55 +03:00
parent aea7e34246
commit 65984d8a37
2 changed files with 0 additions and 34 deletions

View File

@ -2,7 +2,6 @@ glibc_ld-linux
glibc_libBrokenLocale
glibc_libanl
glibc_libc
glibc_libcidn
glibc_libcrypt
glibc_libdl
glibc_libm

View File

@ -1,33 +0,0 @@
#!/bin/sh
set -e
. ../../common.sh
if [ ! -d $SYSROOT ] ; then
echo "Cannot continue - GLIBC is missing. Please buld GLIBC first."
exit 1
fi
mkdir -p "$WORK_DIR/overlay/$BUNDLE_NAME"
cd $WORK_DIR/overlay/$BUNDLE_NAME
rm -rf $DEST_DIR
mkdir -p $DEST_DIR/lib
cp $SYSROOT/lib/libcidn.so.1 $DEST_DIR/lib/
ln -s libcidn.so.1 $DEST_DIR/lib/libcidn.so
echo "Reducing '$BUNDLE_NAME' size."
set +e
strip -g $DEST_DIR/lib/*
set -e
# With '--remove-destination' all possibly existing soft links in
# '$OVERLAY_ROOTFS' will be overwritten correctly.
cp -r --remove-destination $DEST_DIR/* \
$OVERLAY_ROOTFS
echo "Bundle '$BUNDLE_NAME' has been installed."
cd $SRC_DIR