lfs-scripts/scripts/chapter6/6.16-xz.sh

32 lines
472 B
Bash
Raw Normal View History

2023-01-09 10:01:12 +00:00
#!/bin/bash
cd $LFS/sources
tar xf xz-5.2.6.tar.xz
cd xz-5.2.6
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess) \
--disable-static \
--docdir=/usr/share/doc/xz-5.2.6
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make DESTDIR=$LFS install
rm -v $LFS/usr/lib/liblzma.la
cd $LFS/sources
rm -rf xz-5.2.6