lfs-scripts/scripts/chapter8/8.62-iproute2.sh

24 lines
362 B
Bash
Raw Normal View History

2023-01-12 13:42:28 +00:00
#!/bin/bash
cd /sources
tar xf iproute2-5.19.0.tar.xz
cd iproute2-5.19.0
sed -i /ARPD/d Makefile
rm -fv man/man8/arpd.8
make NETNS_RUN_DIR=/run/netns
if [ $? -ne 0 ]
then
exit 1
fi
make SBINDIR=/usr/sbin install
mkdir -pv /usr/share/doc/iproute2-5.19.0
cp -v COPYING README* /usr/share/doc/iproute2-5.19.0
cd /sources
rm -rf iproute2-5.19.0