mirror of
https://github.com/YellowJacketLinux/lfs-buildscripts.git
synced 2025-01-23 22:42:28 +08:00
32 lines
469 B
Bash
32 lines
469 B
Bash
#!/bin/bash
|
|
|
|
source versions.sh
|
|
|
|
GLSOURCES="/sources"
|
|
|
|
pushd $GLSOURCES > /dev/null 2>&1 || myfail "Failed to move to ${GLSOURCES}"
|
|
|
|
[ -d man-pages-${man_pages_version} ] && rm -rf man-pages-${man_pages_version}
|
|
|
|
tar -Jxf ${man_pages_tarball}
|
|
|
|
cd man-pages-${man_pages_version}
|
|
|
|
rm -f man3/crypt*
|
|
|
|
make prefix=/usr install
|
|
|
|
if [ $? -ne 0 ]; then
|
|
myfail "Failed installing man-pages"
|
|
fi
|
|
|
|
popd
|
|
|
|
# cleanup
|
|
|
|
pushd $GLSOURCES
|
|
|
|
rm -rf man-pages-${man_pages_version}
|
|
|
|
popd
|