mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-14 08:59:45 +00:00
14 lines
133 B
Bash
14 lines
133 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd /sources
|
||
|
tar xf man-pages-5.13.tar.xz
|
||
|
cd man-pages-5.13
|
||
|
|
||
|
make prefix=/usr install
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|