lfs-scripts/scripts/chapter8/8.56-diffutils.sh

27 lines
235 B
Bash
Raw Permalink Normal View History

2023-01-12 09:51:59 +00:00
#!/bin/bash
cd /sources
tar xf diffutils-3.8.tar.xz
cd diffutils-3.8
./configure --prefix=/usr
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make check
make install
cd /sources
rm -rf diffutils-3.8